The script programming language of BASH is based on the Bourne Shell syntax, with some extensions and derivations.
If scripts need to be portable, some of the BASH-specific syntax elements should be avoided. Others should be avoided for all scripts, e.g. if there is a corresponding POSIX®-compatible syntax (see Obsolete and deprecated syntax).
Some syntax elements have a BASH-specific, and a portable1) pendant. In these cases the portable syntax should be preferred.
| construct | portable equivalent | Description | Portability |
|---|---|---|---|
source FILE | . FILE | include a script file | Bourne shell (bash, ksh, POSIX®, zsh, …) |
declare keyword | typeset keyword | define local variables (or variables with special attributes) | ksh, zsh, …, not POSIX! |
command <<< WORD | command <<MARKER | a here-string, a special form of the here-document, avoid it in portable scripts! | POSIX® |
export VAR=VALUE | VAR=VALUE | Though POSIX® allows it, some shells don't want the assignment and the exporting in one command | POSIX®, zsh, ksh, … |
(( MATH )) | : $(( MATH )) | POSIX® does't define an arithmetic compund command, many shells don't know it. Using the pseudo-command : and the arithmetic expansion $(( )) is a kind of workaround here. Attention: Not all shell support assignment like $(( a = 1 + 1 ))! Also see below for a probably more portable solution. | all POSIX® compatible shells |
[[ EXPRESSION ]] | [ EXPRESSION ]or test EXPRESSION | The Bashish test keyword is reserved by POSIX®, but not defined. Use the old fashioned way with the test command. See the classic test command | POSIX® and others |
COMMAND < <( …INPUTCOMMANDS… ) | INPUTCOMMANDS > TEMPFILE | Process substitution (here used with redirection); use the old fashioned way (tempfiles) | POSIX® and others |
((echo X);(echo Y)) | ( (echo X); (echo Y) ) | Nested subshells (separate the inner () from the outer () by spaces, to not confuse the shell regarding arithmetic control operators) | POSIX® and others |
Here, some assorted portability information follow. Take it as a small guide to make your scripts a bit more portable. It's not complete (it never will be!) and it's not very detailed (e.g. you won't find information about how which shell technically forks off which subshell). It's just an assorted small set of portability guidelines. -Thebonsai
UNIX shell gurus out there, please be patient with a newbie like me and give comments and hints instead of flames.
When a new value is assigned to an already defined environment variable, there are two possibilities:
The new value is seen by subsequent programs
export VARIABLE (e.g. Sun's /bin/sh)
Since an extra export doesn't hurt, the safest and most portable way is to always (re-)export a changed variable if you want it to be seen by subsequent processes.
Bash has a special compound command to do arithmetics without expansions. However, POSIX has no such commands. In the table at the top, there's the : $((MATH)) construct mentioned as possible alternative. Regarding the exit code, a 100% equivalent construct would be:
# Bash (or others) compound command if ((MATH)); then ... # portable equivalent command if [ "$((MATH))" -ne 0 ]; then ...
Quotes around the arithmetic expansion $((MATH)) should not be necessary as per POSIX, but Bash and AT&T-KSH perform word-splitting on aritrhmetic expansions, so the most portable is with quotes.
The overall problem with echo is, that there are 2 (maybe more) mainstream flavours around. The only case where you may safely use an echo on all systems is: Echoing non-variable arguments that don't start with a - (dash) and don't contain a \ (backslash).
Why? (collection of known behaviours)
-n)--)echo -n and echo -e are neither portable nor standard (even within the same shell, depending on the version or environment variables or the build options, especially KSH93 and Bash)For these, and maybe other reasons, POSIX (SUS) standardized the existance of the ''printf'' command.
${var:x:x} is KSH93/Bash specific${var/../..} and ${var//../..} are KSH93/Bash specificvar=$* and var=$@ are not handled the same in all shells if the first char of IFS is not " " (space). var="$*" should work (except that the Bourne shell always joins the expansions with space)
PWD is POSIX but not Bourne. Most shells are not POSIX in that they don't ignore the value of the PWD environment variable. Workaround to fix the value of PWD at the start of your script:
pwd -P > dev/null
RANDOM is Bash/KSH/ZSH specific. Use awk's rand() function for randomness:
# number between 1 and 500
randpm=$(awk 'BEGIN { srand(); printf ("%d\n", int(rand()*499)+1); }')
Yes, I'm not an awk expert, so please correct it, rather than complaining about possible stupid code!
# Well, seeing how this //is// BASH-hackers.org I kinda missed the bash way of doing the above ;-) # print a number between 0 and 500 :-) printf $(( 500 * RANDOM / 32767 )) # Or print 30 random numbers between 0 and 10 ;) X=0; while (( X++ < 30 )); do echo $(( 10 * RANDOM / 32767 )); done
SECONDS is KSH/ZSH/Bash specific. Avoid it. Find another method.
The PATH variable is a colon-delimited list of directory names, so it's basically possible to run a loop and check every PATH component for the command you're looking for and for executability.
However, this way doesn't look nice. There are other ways of doing this, using commands that are not directly related to this task.
The hash command is used to make the shell remember the full pathname of a command in a lookup-table (to avoid re-scanning the PATH on every command execution attempt). Since it has to do a PATH search, it can be used for this check.
For example, to check if the command ls is available in a location accessible by PATH:
if hash ls >/dev/null 2>&1; then echo "ls is available" fi
Somewhat of a mass-check:
for name in ls grep sed awk; do
if ! hash "$name" >/dev/null 2>&1; then
echo "FAIL: Missing command '$name'"
exit 1
fi
done
Here (bash 3), hash also respects builtin commands. I don't know if this works everywhere, but it seems to be logic.
The command command is used to explicit call an external command, rather than a builtin with the same name. For exactly this reason, it has to do a PATH search, and can be used for this check.
For example, to check if the command sed is available in a location accessible by PATH:
if command -v sed >/dev/null 2>&1; then echo "sed is available" fi
Discussion