Linux Run Multiple Comands в одной строке

# 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