What is /usr/bin/[ and how do I use it?
Sebastian Wright
I was looking at coreutils and found this as one of the files included as part of coreutils: /usr/bin/[. What is [ and what does it do?
It is an executable. I just don't know what it does or how to use it.
$ file /usr/bin/[
/usr/bin/[: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped When I try to run it, I think it is defaulting to the bash built in line expansion. Instead of actually running the file.
$ "/usr/bin/["
/usr/bin/[: missing ‘]’
$ /usr/bin/\[
/usr/bin/[: missing ‘]’ 3 2 Answers
It's an equivalent of the command test. (See info test.) Generally you use it in scripts in conditional expressions like:
if [ -n "$1" ]; then echo $1
fiThe closing bracket is required to enclose the conditional. (Well, it looks like its required just to look nicer in the code. Does anybody know any other practical reason for it?)
2It is equivalent to the test command.
Instead of
if /usr/bin/test -z "$VAR"
then echo VAR not set
fiYou can use:
if /usr/bin/[ -z "$VAR" ]
then echo VAR not set
fiIt can be used in loops too:
i=0
while [ $i -lt 10 ]
do echo $i ((i++))
doneYou can also use them in one-liners like this:
[ -z "$VAR" ] && echo VAR not set && exit
[ -f foo.txt ] && cat foo.txt 1