Unix and Linux Discussions Tagged with shell scripts |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
283,162 |
Shell Programming and Scripting |
|
|
|
5 |
75,031 |
Shell Programming and Scripting |
|
|
|
5 |
72,509 |
Shell Programming and Scripting |
|
|
|
2 |
73,597 |
Shell Programming and Scripting |
|
|
|
2 |
73,365 |
Shell Programming and Scripting |
|
|
|
3 |
74,784 |
Shell Programming and Scripting |
|
|
|
10 |
112,268 |
Shell Programming and Scripting |
|
|
|
1 |
63,634 |
Shell Programming and Scripting |
|
|
|
5 |
74,317 |
Shell Programming and Scripting |
|
|
|
10 |
106,736 |
Shell Programming and Scripting |
|
|
|
3 |
78,726 |
Shell Programming and Scripting |
|
|
|
2 |
71,353 |
Shell Programming and Scripting |
|
|
|
10 |
99,452 |
Shell Programming and Scripting |
|
|
|
11 |
112,148 |
Shell Programming and Scripting |
|
|
|
2 |
70,227 |
Shell Programming and Scripting |
|
|
|
6 |
73,096 |
Shell Programming and Scripting |
|
|
|
5 |
63,314 |
Shell Programming and Scripting |
|
|
|
4 |
78,472 |
Shell Programming and Scripting |
|
|
|
2 |
69,156 |
Shell Programming and Scripting |
|
|
|
2 |
40,400 |
Shell Programming and Scripting |
|
|
|
3 |
64,930 |
Shell Programming and Scripting |
|
|
|
2 |
67,973 |
Shell Programming and Scripting |
|
|
|
17 |
167,225 |
Shell Programming and Scripting |
|
|
|
2 |
71,577 |
Shell Programming and Scripting |
|
|
|
5 |
76,893 |
Shell Programming and Scripting |
|
|
|
2 |
67,678 |
Shell Programming and Scripting |
|
|
|
2 |
66,311 |
Shell Programming and Scripting |
|
|
|
2 |
64,479 |
Shell Programming and Scripting |
|
|
|
2 |
66,367 |
Shell Programming and Scripting |
|
|
|
1 |
71,935 |
Shell Programming and Scripting |
|
|
|
3 |
69,586 |
Shell Programming and Scripting |
|
|
|
2 |
73,668 |
Shell Programming and Scripting |
|
|
|
4 |
62,581 |
Shell Programming and Scripting |
|
|
|
0 |
87,653 |
Shell Programming and Scripting |
|
|
|
5 |
49,732 |
Shell Programming and Scripting |
|
|
|
7 |
106,553 |
Shell Programming and Scripting |
|
|
|
9 |
118,767 |
Shell Programming and Scripting |
|
|
|
5 |
70,172 |
Shell Programming and Scripting |
|
|
|
3 |
79,831 |
Shell Programming and Scripting |
|
|
|
5 |
21,410 |
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