Unix and Linux Discussions Tagged with shell scripts |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
323,057 |
Shell Programming and Scripting |
|
|
|
5 |
89,418 |
Shell Programming and Scripting |
|
|
|
5 |
83,926 |
Shell Programming and Scripting |
|
|
|
2 |
88,290 |
Shell Programming and Scripting |
|
|
|
2 |
87,062 |
Shell Programming and Scripting |
|
|
|
3 |
89,085 |
Shell Programming and Scripting |
|
|
|
10 |
134,365 |
Shell Programming and Scripting |
|
|
|
1 |
76,071 |
Shell Programming and Scripting |
|
|
|
5 |
84,447 |
Shell Programming and Scripting |
|
|
|
10 |
107,805 |
Shell Programming and Scripting |
|
|
|
3 |
93,287 |
Shell Programming and Scripting |
|
|
|
2 |
86,314 |
Shell Programming and Scripting |
|
|
|
10 |
116,412 |
Shell Programming and Scripting |
|
|
|
11 |
135,013 |
Shell Programming and Scripting |
|
|
|
2 |
84,771 |
Shell Programming and Scripting |
|
|
|
6 |
88,053 |
Shell Programming and Scripting |
|
|
|
5 |
64,006 |
Shell Programming and Scripting |
|
|
|
4 |
95,187 |
Shell Programming and Scripting |
|
|
|
2 |
83,562 |
Shell Programming and Scripting |
|
|
|
2 |
47,614 |
Shell Programming and Scripting |
|
|
|
3 |
65,627 |
Shell Programming and Scripting |
|
|
|
2 |
81,576 |
Shell Programming and Scripting |
|
|
|
17 |
200,805 |
Shell Programming and Scripting |
|
|
|
2 |
86,745 |
Shell Programming and Scripting |
|
|
|
5 |
92,444 |
Shell Programming and Scripting |
|
|
|
2 |
80,464 |
Shell Programming and Scripting |
|
|
|
2 |
76,290 |
Shell Programming and Scripting |
|
|
|
2 |
74,818 |
Shell Programming and Scripting |
|
|
|
2 |
78,809 |
Shell Programming and Scripting |
|
|
|
1 |
86,094 |
Shell Programming and Scripting |
|
|
|
3 |
70,224 |
Shell Programming and Scripting |
|
|
|
2 |
86,183 |
Shell Programming and Scripting |
|
|
|
4 |
72,892 |
Shell Programming and Scripting |
|
|
|
0 |
101,669 |
Shell Programming and Scripting |
|
|
|
5 |
57,470 |
Shell Programming and Scripting |
|
|
|
7 |
126,648 |
Shell Programming and Scripting |
|
|
|
9 |
140,756 |
Shell Programming and Scripting |
|
|
|
5 |
80,479 |
Shell Programming and Scripting |
|
|
|
3 |
93,718 |
Shell Programming and Scripting |
|
|
|
5 |
22,562 |
Shell Programming and Scripting |
ATF-SH(1) BSD General Commands Manual ATF-SH(1)
NAME
atf-sh [-s shell] -- interpreter for shell-based test programs
SYNOPSIS
atf-sh script
DESCRIPTION
atf-sh is an interpreter that runs the test program given in script after loading the atf-sh(3) library.
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 inter-
preter, 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:
-s shell Specifies the shell to use instead of the value provided by ATF_SHELL.
ENVIRONMENT
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.
EXAMPLES
Scripts using atf-sh(3) should start with:
#! /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 -s option afterwards as a single parameter:
#! /path/to/bin/atf-sh -s/bin/bash
ENVIRONMENT
ATF_SHELL Path to the system shell to be used in the generated scripts.
SEE ALSO
atf-sh(3)
BSD
September 27, 2014 BSD