Unix and Linux Discussions Tagged with shell scripts |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
284,793 |
Shell Programming and Scripting |
|
|
|
5 |
75,476 |
Shell Programming and Scripting |
|
|
|
5 |
72,923 |
Shell Programming and Scripting |
|
|
|
2 |
74,097 |
Shell Programming and Scripting |
|
|
|
2 |
73,786 |
Shell Programming and Scripting |
|
|
|
3 |
75,266 |
Shell Programming and Scripting |
|
|
|
10 |
112,934 |
Shell Programming and Scripting |
|
|
|
1 |
64,101 |
Shell Programming and Scripting |
|
|
|
5 |
74,712 |
Shell Programming and Scripting |
|
|
|
10 |
107,163 |
Shell Programming and Scripting |
|
|
|
3 |
79,183 |
Shell Programming and Scripting |
|
|
|
2 |
71,763 |
Shell Programming and Scripting |
|
|
|
10 |
100,050 |
Shell Programming and Scripting |
|
|
|
11 |
112,846 |
Shell Programming and Scripting |
|
|
|
2 |
70,663 |
Shell Programming and Scripting |
|
|
|
6 |
73,596 |
Shell Programming and Scripting |
|
|
|
5 |
63,567 |
Shell Programming and Scripting |
|
|
|
4 |
78,938 |
Shell Programming and Scripting |
|
|
|
2 |
69,622 |
Shell Programming and Scripting |
|
|
|
2 |
40,754 |
Shell Programming and Scripting |
|
|
|
3 |
65,216 |
Shell Programming and Scripting |
|
|
|
2 |
68,380 |
Shell Programming and Scripting |
|
|
|
17 |
168,247 |
Shell Programming and Scripting |
|
|
|
2 |
72,035 |
Shell Programming and Scripting |
|
|
|
5 |
77,344 |
Shell Programming and Scripting |
|
|
|
2 |
68,126 |
Shell Programming and Scripting |
|
|
|
2 |
66,741 |
Shell Programming and Scripting |
|
|
|
2 |
64,932 |
Shell Programming and Scripting |
|
|
|
2 |
66,772 |
Shell Programming and Scripting |
|
|
|
1 |
72,449 |
Shell Programming and Scripting |
|
|
|
3 |
69,839 |
Shell Programming and Scripting |
|
|
|
2 |
74,060 |
Shell Programming and Scripting |
|
|
|
4 |
62,946 |
Shell Programming and Scripting |
|
|
|
0 |
88,064 |
Shell Programming and Scripting |
|
|
|
5 |
50,140 |
Shell Programming and Scripting |
|
|
|
7 |
107,194 |
Shell Programming and Scripting |
|
|
|
9 |
119,447 |
Shell Programming and Scripting |
|
|
|
5 |
70,588 |
Shell Programming and Scripting |
|
|
|
3 |
80,315 |
Shell Programming and Scripting |
|
|
|
5 |
21,622 |
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