bash 2 commands on one line code example
Example: two bash coomand in same line
# cmd1 && cmd2
$ cd myfolder && ls # run ls only after cd to myfolder
# cmd1; cmd2
$ cd myfolder; ls # no matter cd to myfolder successfully, run ls
# cmd1 || cmd2
$ cd myfolder || ls # if failed cd to myfolder, `ls` will run