Skip to content

Instantly share code, notes, and snippets.

Created June 20, 2015 03:58
Show Gist options
  • Save anonymous/23ccb223b9b41ca8a470 to your computer and use it in GitHub Desktop.
Save anonymous/23ccb223b9b41ca8a470 to your computer and use it in GitHub Desktop.
function runasuser {
echo $1
echo $2
sudo -H -u $1 bash -c '$2';
}
export -f runasuser
runasuser tom "ls -al /"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment