Skip to main content

linux - What is /usr/bin/[ and how do I use it?


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
]'




Answer



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
fi

The 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?)


Comments