Skip to content

Instantly share code, notes, and snippets.

@constrict0r
Last active November 2, 2018 01:20
Show Gist options
  • Save constrict0r/1978fbdae8c62b741fd010a5de8cd62d to your computer and use it in GitHub Desktop.
Save constrict0r/1978fbdae8c62b741fd010a5de8cd62d to your computer and use it in GitHub Desktop.
Create a function, export it and call it as another user.
#!/bin/bash
USER=$1
say_hello() {
printf 'hello'
}
export -f say_hello
su $USER -c say_hello
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment