Unix and Linux Discussions Tagged with shell script |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
409 |
426,768 |
Open Source |
|
|
|
192 |
262,414 |
Open Source |
|
|
|
249 |
284,315 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
14,510 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
11,208 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
15,158 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
10,164 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,579 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
11,682 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
11,025 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,670 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
31,036 |
Answers to Frequently Asked Questions |
|
|
|
3 |
20,499 |
Answers to Frequently Asked Questions |
|
|
|
0 |
8,656 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
13,118 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
66,740 |
Shell Programming and Scripting |
|
|
|
6 |
9,885 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
12,326 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
69,838 |
Shell Programming and Scripting |
|
|
|
0 |
10,879 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
12,531 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,213 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
28,109 |
Shell Programming and Scripting |
|
|
|
3 |
9,602 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
11,133 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,948 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
26,554 |
Shell Programming and Scripting |
|
|
|
2 |
6,889 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
9,433 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
6,259 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
7,227 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,584 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
10,538 |
Shell Programming and Scripting |
|
|
|
17 |
12,555 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,596 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
14,817 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,173 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,451 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,943 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
6,695 |
UNIX for Beginners Questions & Answers |
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