I don't use it because '&&' is not available. I use it pretty often.
command1; and command2
; executes the following command even if the first one fails. && only if the previous command returns 0.
So you can do things like: runthiscommand; and echo "Success"; or echo "Failed"
Oh but it is! Read the link!