How do i run su username -c "command " in a sequence

am trying to write a script that runs commands in a sequence as a user but su keeps doing every command at the same time instead of running them one after another

the script looks like

su username -c "cd /home/username/ ; git something.com"
su username -c "cd /home/username/ ; git something2.com"
su username -c "cd /home/username/ ; git something3.com"

2 Answers

Add the waitcommand.

su username -c "cd /home/username/ ; git something.com"; wait

This will tell the script to wait for the sub-process to finish.

Why not

su username -c "cd /home/username/ ; git something.com; git something2.com; git something3.com"

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like