Run commands after another
Ex.
mkdir temp & cd temp & ls
Run commands after another if the previous command SUCCEEDS
Ex.
mkdir temp && cd temp && ls
Run commands after another if the previous command FAILS
Ex.
mkdir temp || echo 'mkdir failed'
Run commands after another
Ex.
mkdir temp & cd temp & ls
Run commands after another if the previous command SUCCEEDS
Ex.
mkdir temp && cd temp && ls
Run commands after another if the previous command FAILS
Ex.
mkdir temp || echo 'mkdir failed'
0 Comments.