We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
su - USER -c 'PROGRAM' USER is optional and default to root.
su - USER -c 'PROGRAM'
su - -c '(tty &)' The ampersand detach the program as exec does, the parenthesis throws up your inner scripting in a subshell with no TTY.
su - -c '(tty &)'
Enjoy.