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 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)exec.3 8.3 (Berkeley) 1/24/94
33 .\" $FreeBSD: src/lib/libc/gen/exec.3,v 1.18 2002/12/19 09:40:21 ru Exp $
50 .Vt extern char **environ ;
52 .Fn execl "const char *path" "const char *arg" ...
54 .Fn execlp "const char *file" "const char *arg" ...
56 .Fn execle "const char *path" "const char *arg" ...
58 .Fn exect "const char *path" "char *const argv[]" "char *const envp[]"
60 .Fn execv "const char *path" "char *const argv[]"
62 .Fn execvp "const char *file" "char *const argv[]"
66 family of functions replaces the current process image with a
68 The functions described in this manual page are front-ends for the function
70 (See the manual page for
72 for detailed information about the replacement of the current process.)
74 The initial argument for these functions is the pathname of a file which
79 and subsequent ellipses in the
84 functions can be thought of as
89 Together they describe a list of one or more pointers to null-terminated
90 strings that represent the argument list available to the executed program.
91 The first argument, by convention, should point to the file name associated
92 with the file being executed.
104 functions provide an array of pointers to null-terminated strings that
105 represent the argument list available to the new program.
106 The first argument, by convention, should point to the file name associated
107 with the file being executed.
108 The array of pointers
118 functions also specify the environment of the executed process by following
121 pointer that terminates the list of arguments in the argument list
122 or the pointer to the argv array with an additional argument.
123 This additional argument is an array of pointers to null-terminated strings
129 The other functions take the environment for the new process image from the
132 in the current process.
134 Some of these functions have special semantics.
140 will duplicate the actions of the shell in searching for an executable file
141 if the specified file name does not contain a slash
144 The search path is the path specified in the environment by
147 If this variable isn't specified,
148 the default path is set according to the
153 .Dq Ev /usr/bin:/bin .
154 In addition, certain errors are treated specially.
156 If an error is ambiguous (for simplicity, we shall consider all
159 as being ambiguous here, although only the critical error
161 is really ambiguous),
162 then these functions will act as if they stat the file to determine
163 whether the file exists and has suitable execute permissions.
164 If it does, they will return immediately with the global variable
166 restored to the value set by
168 Otherwise, the search will be continued.
169 If the search completes without performing a successful
171 or terminating due to an error,
172 these functions will return with the global variable
178 according to whether at least one file with suitable execute permissions
181 If the header of a file isn't recognized (the attempted
185 these functions will execute the shell with the path of
186 the file as its first argument.
187 (If this attempt fails, no further searching is done.)
191 executes a file with the program tracing facilities enabled (see
196 functions returns, an error will have occurred.
197 The return value is \-1, and the global variable
199 will be set to indicate the error.
201 .Bl -tag -width /bin/sh -compact
215 for any of the errors specified for the library functions
227 for any of the errors specified for the library function
237 Historically, the default path for the
242 .Dq Pa :/bin:/usr/bin .
243 This was changed to place the current directory last to enhance system
250 when errors occur while attempting to execute the file is not quite historic
251 practice, and has not traditionally been documented and is not specified
256 Traditionally, the functions
260 ignored all errors except for the ones described above and
262 upon which they retried after sleeping for several seconds, and
266 upon which they returned.
269 and determine existence and executability more carefully.
272 for inaccessible directories in the path prefix is no longer
275 for files with unsuitable execute permissions.
278 they returned upon all errors except
284 This was inferior to the traditional error handling,
285 since it breaks the ignoring of errors for path prefixes
286 and only improves the handling of the unusual ambiguous error
288 and the unusual error
290 The behaviour was changed to match the behaviour of