xxxxxxxxxx
# This will run cmd1, and in case of success it will run cmd2
cmd1 && cmd2
# This will run cmd1, and in case of failure it will run cmd2
cmd1 || cmd2
# This will run cmd1, and then it will run cmd2,
# independent of the failure or success of running cmd1.
cmd1 ; cmd2