Unix and Linux Discussions Tagged with shell scripts |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
40,730 |
Shell Programming and Scripting |
|
|
|
5 |
7,975 |
Shell Programming and Scripting |
|
|
|
5 |
11,663 |
Shell Programming and Scripting |
|
|
|
2 |
7,361 |
Shell Programming and Scripting |
|
|
|
2 |
10,086 |
Shell Programming and Scripting |
|
|
|
3 |
10,051 |
Shell Programming and Scripting |
|
|
|
10 |
8,806 |
Shell Programming and Scripting |
|
|
|
1 |
7,166 |
Shell Programming and Scripting |
|
|
|
5 |
17,584 |
Shell Programming and Scripting |
|
|
|
10 |
8,742 |
Shell Programming and Scripting |
|
|
|
3 |
9,944 |
Shell Programming and Scripting |
|
|
|
2 |
6,281 |
Shell Programming and Scripting |
|
|
|
10 |
9,870 |
Shell Programming and Scripting |
|
|
|
11 |
10,255 |
Shell Programming and Scripting |
|
|
|
2 |
6,846 |
Shell Programming and Scripting |
|
|
|
6 |
6,090 |
Shell Programming and Scripting |
|
|
|
5 |
8,068 |
Shell Programming and Scripting |
|
|
|
4 |
7,883 |
Shell Programming and Scripting |
|
|
|
2 |
5,953 |
Shell Programming and Scripting |
|
|
|
2 |
7,459 |
Shell Programming and Scripting |
|
|
|
3 |
7,623 |
Shell Programming and Scripting |
|
|
|
2 |
5,754 |
Shell Programming and Scripting |
|
|
|
17 |
13,612 |
Shell Programming and Scripting |
|
|
|
2 |
6,405 |
Shell Programming and Scripting |
|
|
|
5 |
7,818 |
Shell Programming and Scripting |
|
|
|
2 |
9,617 |
Shell Programming and Scripting |
|
|
|
2 |
11,200 |
Shell Programming and Scripting |
|
|
|
2 |
9,788 |
Shell Programming and Scripting |
|
|
|
2 |
8,145 |
Shell Programming and Scripting |
|
|
|
1 |
9,329 |
Shell Programming and Scripting |
|
|
|
3 |
10,990 |
Shell Programming and Scripting |
|
|
|
2 |
12,988 |
Shell Programming and Scripting |
|
|
|
4 |
8,895 |
Shell Programming and Scripting |
|
|
|
0 |
21,515 |
Shell Programming and Scripting |
|
|
|
5 |
13,358 |
Shell Programming and Scripting |
|
|
|
7 |
13,289 |
Shell Programming and Scripting |
|
|
|
9 |
18,050 |
Shell Programming and Scripting |
|
|
|
5 |
12,477 |
Shell Programming and Scripting |
|
|
|
3 |
16,830 |
Shell Programming and Scripting |
|
|
|
5 |
9,301 |
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