On a Linux system, what is /bin/true? What is it used for?
/bin/true
In the UNIX shells, it's used for the same purposes as boolean constants true and false in any other language.
while true; do something done
flag=true ... if $flag; then something done