bash run multiple commands code example
Example 1: git multiple commands one line
Use && to combine git commands
example:
git checkout branch_name && git fetch && git pull && git add --all && git commit -m "latest changes" && git push
Example 2: how to run two commands in linux
ls ; pwd ; whoami