1 .\" Copyright (c) 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)exec.3 8.3 (Berkeley) 1/24/94
29 .\" $FreeBSD: src/lib/libc/gen/exec.3,v 1.28 2008/06/23 05:22:06 ed Exp $
30 .\" $DragonFly: src/lib/libc/gen/exec.3,v 1.5 2007/12/21 22:14:04 swildner Exp $
48 .Vt extern char **environ ;
50 .Fn execl "const char *path" "const char *arg" ... /* "(char *)0" */
52 .Fn execlp "const char *file" "const char *arg" ... /* "(char *)0" */
55 .Fa "const char *path" "const char *arg" ...
58 .Fa "(char *)0" "char *const envp[]" */
62 .Fn exect "const char *path" "char *const argv[]" "char *const envp[]"
64 .Fn execv "const char *path" "char *const argv[]"
66 .Fn execvp "const char *file" "char *const argv[]"
68 .Fn execvP "const char *file" "const char *search_path" "char *const argv[]"
72 family of functions replaces the current process image with a
74 The functions described in this manual page are front-ends for the function
76 (See the manual page for
78 for detailed information about the replacement of the current process.
81 manual page provides detailed information about the execution of
84 The initial argument for these functions is the pathname of a file which
89 and subsequent ellipses in the
94 functions can be thought of as
99 Together they describe a list of one or more pointers to null-terminated
100 strings that represent the argument list available to the executed program.
101 The first argument, by convention, should point to the file name associated
102 with the file being executed.
103 The list of arguments
115 functions provide an array of pointers to null-terminated strings that
116 represent the argument list available to the new program.
117 The first argument, by convention, should point to the file name associated
118 with the file being executed.
119 The array of pointers
129 functions also specify the environment of the executed process by following
132 pointer that terminates the list of arguments in the argument list
133 or the pointer to the argv array with an additional argument.
134 This additional argument is an array of pointers to null-terminated strings
140 The other functions take the environment for the new process image from the
143 in the current process.
145 Some of these functions have special semantics.
152 will duplicate the actions of the shell in searching for an executable file
153 if the specified file name does not contain a slash
160 search path is the path specified in the environment by
163 If this variable is not specified,
164 the default path is set according to the
169 .Dq Ev /usr/bin:/bin .
172 the search path is specified as an argument to the function.
173 In addition, certain errors are treated specially.
175 If an error is ambiguous (for simplicity, we shall consider all
178 as being ambiguous here, although only the critical error
180 is really ambiguous),
181 then these functions will act as if they stat the file to determine
182 whether the file exists and has suitable execute permissions.
183 If it does, they will return immediately with the global variable
185 restored to the value set by
187 Otherwise, the search will be continued.
188 If the search completes without performing a successful
190 or terminating due to an error,
191 these functions will return with the global variable
197 according to whether at least one file with suitable execute permissions
200 If the header of a file is not recognized (the attempted
204 these functions will execute the shell with the path of
205 the file as its first argument.
206 (If this attempt fails, no further searching is done.)
210 executes a file with the program tracing facilities enabled (see
215 functions returns, an error will have occurred.
216 The return value is \-1, and the global variable
218 will be set to indicate the error.
220 .Bl -tag -width /bin/sh -compact
225 Historically, the default path for the
230 .Dq Pa :/bin:/usr/bin .
231 This was changed to place the current directory last to enhance system
238 when errors occur while attempting to execute the file is not quite historic
239 practice, and has not traditionally been documented and is not specified
244 Traditionally, the functions
248 ignored all errors except for the ones described above and
250 upon which they retried after sleeping for several seconds, and
254 upon which they returned.
257 and determine existence and executability more carefully.
260 for inaccessible directories in the path prefix is no longer
263 for files with unsuitable execute permissions.
266 they returned upon all errors except
272 This was inferior to the traditional error handling,
273 since it breaks the ignoring of errors for path prefixes
274 and only improves the handling of the unusual ambiguous error
276 and the unusual error
278 The behaviour was changed to match the behaviour of
291 for any of the errors specified for the library functions
303 for any of the errors specified for the library function
326 function first appeared in