Answers for "run specific script with an other user linux"

0

run specific script with an other user linux

/bin/su -c "/path/to/backup_db.sh /tmp/test" - postgres

Breaking it down:
 /bin/su : switch user
 -c "/path/to..." : command to run
 - : option to su, make it a login session (source profile for the user)
 postgres : user to become
Posted by: Guest on March-24-2020

Code answers related to "run specific script with an other user linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language