Unix and Linux Discussions Tagged with shell script |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
409 |
422,907 |
Open Source |
|
|
|
192 |
260,145 |
Open Source |
|
|
|
249 |
262,115 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
14,186 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
11,126 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
14,823 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
9,952 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,414 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
11,508 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
10,845 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,508 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
29,584 |
Answers to Frequently Asked Questions |
|
|
|
3 |
20,235 |
Answers to Frequently Asked Questions |
|
|
|
0 |
8,480 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
12,850 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
66,314 |
Shell Programming and Scripting |
|
|
|
6 |
9,725 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
12,125 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
69,587 |
Shell Programming and Scripting |
|
|
|
0 |
10,653 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
12,334 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,000 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
28,024 |
Shell Programming and Scripting |
|
|
|
3 |
9,443 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,951 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,807 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
26,487 |
Shell Programming and Scripting |
|
|
|
2 |
6,758 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
9,257 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
6,094 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
7,072 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,450 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
10,499 |
Shell Programming and Scripting |
|
|
|
17 |
12,222 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,462 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
14,637 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,027 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,249 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,810 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
6,559 |
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