1
2
3
4
5
6
7
8
9
|
/*
* Copyright (c) 2008-2021 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
|
|
|
1
2
3
4
5
6
7
8
9
|
/*
* Copyright (c) 2008-2022 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
*
* @param program The program to execute. If it does not start with a slash, the
* search path specified in PATH is used.
* @param arguments The arguments to pass to the program, or `nil`
* @return A new, autoreleased OFSubprocess.
*/
+ (instancetype)
subProcessWithProgram: (OFString *)program
arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments;
/**
* @brief Creates a new OFSubprocess with the specified program, program name
* and arguments and invokes the program.
*
* @param program The program to execute. If it does not start with a slash, the
|
|
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
*
* @param program The program to execute. If it does not start with a slash, the
* search path specified in PATH is used.
* @param arguments The arguments to pass to the program, or `nil`
* @return A new, autoreleased OFSubprocess.
*/
+ (instancetype)
subprocessWithProgram: (OFString *)program
arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments;
/**
* @brief Creates a new OFSubprocess with the specified program, program name
* and arguments and invokes the program.
*
* @param program The program to execute. If it does not start with a slash, the
|