Tag Archives: tips

~/.bashrc Perl Module Version Tip

I often need to quickly check the version of a perl module currently installed. A while back I got tired of running: $ perl -MPOE::Filter -E ‘say $POE::Filter::VERSION’ 1.2357 So I added a quick function to .bashrc: pm-vers () { … Continue reading

Posted in General | Tagged , , , | Leave a comment

screen copy mode can be used to copy/paste

I’m aware of many people that use GNU Screen’s copy mode to scroll back through terminal history but don’t actually use copy mode for copying text for later pasting. I was one of those people myself for some time. Screen … Continue reading

Posted in General | Tagged , , | 2 Comments

Rotate through Screen Windows

A new command in screen version 4.00 is the idle command. idle time command Executes screen command, command when idle for time seconds. E.g. to rotate through screen windows with a 3 second interval: idle 3 next To cancel, idle … Continue reading

Posted in General | Tagged , , | Leave a comment