Main index | Section 1 | Options |
atf-sh is not a real interpreter though: it is just a wrapper around the system-wide shell defined by ATF_SHELL. atf-sh executes the interpreter, loads the atf-sh(3) library and then runs the script. You must consider atf-sh to be a POSIX shell by default and thus should not use any non-standard extensions.
The following options are available:
| |
Specifies the shell to use instead of the value provided by ATF_SHELL. | |
ATF_LIBEXECDIR | |
Overrides the builtin directory where atf-sh is located. Should not be overridden other than for testing purposes. | |
ATF_PKGDATADIR | |
Overrides the builtin directory where libatf-sh.subr is located. Should not be overridden other than for testing purposes. | |
ATF_SHELL | |
Path to the system shell to be used in the generated scripts. Scripts must not rely on this variable being set to select a specific interpreter. | |
ATF_SHELL | |
Path to the system shell to be used in the generated scripts. | |
#! /usr/bin/env atf-sh
Alternatively, if you want to explicitly choose a shell interpreter, you cannot
rely on
env(1)
to find
atf-sh.
Instead, you have to hardcode the path to
atf-sh
in the script and then use the
#! /path/to/bin/atf-sh -s/bin/bash
ATF-SH (1) | March 6, 2017 |
Main index | Section 1 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | Never write it in C if you can do it in `awk'; Never do it in `awk' if `sed' can handle it; Never use `sed' when `tr' can do the job; Never invoke `tr' when `cat' is sufficient; Avoid using `cat' whenever possible. |
” |
— Taylor's Laws of Programming |