Unix and Linux Discussions Tagged with shell scripts |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
279,005 |
Shell Programming and Scripting |
|
|
|
5 |
73,968 |
Shell Programming and Scripting |
|
|
|
5 |
71,477 |
Shell Programming and Scripting |
|
|
|
2 |
72,465 |
Shell Programming and Scripting |
|
|
|
2 |
72,255 |
Shell Programming and Scripting |
|
|
|
3 |
73,692 |
Shell Programming and Scripting |
|
|
|
10 |
110,502 |
Shell Programming and Scripting |
|
|
|
1 |
62,647 |
Shell Programming and Scripting |
|
|
|
5 |
73,291 |
Shell Programming and Scripting |
|
|
|
10 |
105,617 |
Shell Programming and Scripting |
|
|
|
3 |
77,519 |
Shell Programming and Scripting |
|
|
|
2 |
70,252 |
Shell Programming and Scripting |
|
|
|
10 |
97,990 |
Shell Programming and Scripting |
|
|
|
11 |
110,397 |
Shell Programming and Scripting |
|
|
|
2 |
69,124 |
Shell Programming and Scripting |
|
|
|
6 |
71,968 |
Shell Programming and Scripting |
|
|
|
5 |
62,608 |
Shell Programming and Scripting |
|
|
|
4 |
77,327 |
Shell Programming and Scripting |
|
|
|
2 |
68,082 |
Shell Programming and Scripting |
|
|
|
2 |
39,520 |
Shell Programming and Scripting |
|
|
|
3 |
64,207 |
Shell Programming and Scripting |
|
|
|
2 |
66,899 |
Shell Programming and Scripting |
|
|
|
17 |
164,823 |
Shell Programming and Scripting |
|
|
|
2 |
70,388 |
Shell Programming and Scripting |
|
|
|
5 |
75,733 |
Shell Programming and Scripting |
|
|
|
2 |
66,616 |
Shell Programming and Scripting |
|
|
|
2 |
65,321 |
Shell Programming and Scripting |
|
|
|
2 |
63,467 |
Shell Programming and Scripting |
|
|
|
2 |
65,385 |
Shell Programming and Scripting |
|
|
|
1 |
70,825 |
Shell Programming and Scripting |
|
|
|
3 |
68,861 |
Shell Programming and Scripting |
|
|
|
2 |
72,592 |
Shell Programming and Scripting |
|
|
|
4 |
61,668 |
Shell Programming and Scripting |
|
|
|
0 |
86,607 |
Shell Programming and Scripting |
|
|
|
5 |
48,768 |
Shell Programming and Scripting |
|
|
|
7 |
104,928 |
Shell Programming and Scripting |
|
|
|
9 |
117,023 |
Shell Programming and Scripting |
|
|
|
5 |
69,135 |
Shell Programming and Scripting |
|
|
|
3 |
78,741 |
Shell Programming and Scripting |
|
|
|
5 |
20,855 |
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