Unix and Linux Discussions Tagged with shell scripts |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
50,756 |
Shell Programming and Scripting |
|
|
|
5 |
9,115 |
Shell Programming and Scripting |
|
|
|
5 |
13,594 |
Shell Programming and Scripting |
|
|
|
2 |
8,387 |
Shell Programming and Scripting |
|
|
|
2 |
10,922 |
Shell Programming and Scripting |
|
|
|
3 |
11,134 |
Shell Programming and Scripting |
|
|
|
10 |
10,475 |
Shell Programming and Scripting |
|
|
|
1 |
7,879 |
Shell Programming and Scripting |
|
|
|
5 |
18,549 |
Shell Programming and Scripting |
|
|
|
10 |
10,608 |
Shell Programming and Scripting |
|
|
|
3 |
11,574 |
Shell Programming and Scripting |
|
|
|
2 |
6,987 |
Shell Programming and Scripting |
|
|
|
10 |
11,629 |
Shell Programming and Scripting |
|
|
|
11 |
12,032 |
Shell Programming and Scripting |
|
|
|
2 |
7,621 |
Shell Programming and Scripting |
|
|
|
6 |
6,974 |
Shell Programming and Scripting |
|
|
|
5 |
9,034 |
Shell Programming and Scripting |
|
|
|
4 |
8,625 |
Shell Programming and Scripting |
|
|
|
2 |
6,721 |
Shell Programming and Scripting |
|
|
|
2 |
8,421 |
Shell Programming and Scripting |
|
|
|
3 |
8,629 |
Shell Programming and Scripting |
|
|
|
2 |
6,499 |
Shell Programming and Scripting |
|
|
|
17 |
16,247 |
Shell Programming and Scripting |
|
|
|
2 |
7,335 |
Shell Programming and Scripting |
|
|
|
5 |
8,588 |
Shell Programming and Scripting |
|
|
|
2 |
10,442 |
Shell Programming and Scripting |
|
|
|
2 |
12,676 |
Shell Programming and Scripting |
|
|
|
2 |
10,680 |
Shell Programming and Scripting |
|
|
|
2 |
8,936 |
Shell Programming and Scripting |
|
|
|
1 |
10,111 |
Shell Programming and Scripting |
|
|
|
3 |
11,924 |
Shell Programming and Scripting |
|
|
|
2 |
13,840 |
Shell Programming and Scripting |
|
|
|
4 |
9,581 |
Shell Programming and Scripting |
|
|
|
0 |
24,527 |
Shell Programming and Scripting |
|
|
|
5 |
14,498 |
Shell Programming and Scripting |
|
|
|
7 |
15,002 |
Shell Programming and Scripting |
|
|
|
9 |
19,910 |
Shell Programming and Scripting |
|
|
|
5 |
13,941 |
Shell Programming and Scripting |
|
|
|
3 |
17,641 |
Shell Programming and Scripting |
|
|
|
5 |
9,836 |
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