I often start a screen session, issue a ":multiuser on" command and then ":acladd someuser".
Is there some way to get with a single shell command a screen session to start with these two commands automatically?
Thanks!
I often start a screen session, issue a ":multiuser on" command and then ":acladd someuser".
Is there some way to get with a single shell command a screen session to start with these two commands automatically?
Thanks!
Use a custom screen config file with screen -c file
. For example:
echo "multiuser on" >> multiscreen.conf
echo "acladd someuser" >> multiscreen.conf
alias multiscreen='screen -c multiscreen.conf' # bash syntax for alias
multiscreen
Add them to your ~/.screenrc
file (without the colons). See the screen man page and the example files it refers to (possibly at /usr/share/doc/screen/examples
).