Linux Run Multipel Comands em uma linha
# cmd1 && cmd2
$ cd myfolder && ls # run ls only after cd to myfolder
$ cd myfolder; ls # no matter cd to myfolder successfully, run ls
$ cd myfolder || ls # if failed cd to myfolder, `ls` will run
Eager Echidna