I want to run a command as a not-root user in a startup script (rc.local). The command I want to execute is actually an alias in the non-root user's .bash_profile. I have tried to use
su - myuser -c aliased_cmd
but this doesn't work. If I simply type
su - myuser
# wait for login...
aliased_cmd
it works fine, but obviously this isn't appropriate in the actual script. Of course I could copy the aliases and functions I'd like to use into the actual rc.local file, but this seems a bit silly... perhaps there is an option I don't know about or a way to use sudo for this?
--preserve-environmentorsu -c 'echo "$SHELL"' myuser? It might be that the command is not executed in a Bash shell. – l0b0 Feb 22 '12 at 13:50