In Bash script, what is the difference between the following snippets?
1) Using single brackets:
if [ "$1" = VALUE ] ; then
# code
fi
2) Using double brackets:
if [[ "$1" = VALUE ]] ; then
# code
fi
|
More info on the Advanced Bash Scripting Guide. In your snippets, there's no difference as you're not using any of the additional features. |
||||
|
|
|
|
|||
|
|
|
Using |
|||
|
|
|
Just in case portability is needed: For portability testing you can get the Bourne shell via the Heirloom project or: http://freshmeat.net/projects/bournesh (On Mac OS X, for example, /bin/sh is no pure Bourne shell.) |
|||
|
|
|
which is also an external program, which doesn't mean that it isn't a builtin.
In single square brackets you have to use -lt for 'less than' alias < while else you could use <
4: No such file means, it tries to read from a file named "4" - redirecting stdin < The same for > and stdout. |
||||
|
|