Specifying a log name for screen output without relying on .screenrc

colorcommand-line-interfacegnu-screenlogging

In a Bash script, I use "screen -L" to log executed commands in color. For example:

screen -L tree

Then we read the logfile with less -R.

When this script is executed, other screens are potentially running so we don't know which screenlog.* contains our output. I can't demand the user to customize his/her .screenrc.

Is there a way to specify a log name on command line or to read specific .screenrc commands?

Best Answer

I have a couple thoughts on this. First, note you can control the startup screenrc when invoking screen via the -c command line switch. Second, you can use environment variables in your .screenrc. Putting this all together, here's a shell script to do something like what you want:

#!/bin/bash

cat << EOF >/tmp/screenrc.$$
logfile /tmp/screenlog.$$
EOF

screen -c /tmp/screenrc.$$ -L
rm /tmp/screenrc.$$

echo "logfile is /tmp/screenlog.$$"

that script overrides the user screenrc and places the output in a specific file. In this case I'm using $$ to generate the file name by appending the script process name. Note that you should generally use mktemp instead to create secure temporary files but I'm lazy right now.

Also this completely replaces the user .screenrc. If you want to still read settings from that file, you should change the generated config file to something like this:

logfile /tmp/screenlog.$$
source $HOME/.screenrc