batch two terminal commands in one line code example
Example 1: cmd multiple commands
dir & echo foo
dir && echo foo ::Use && if you only want the second to execute if the first excuted successfully
Example 2: 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