irssi: remotely attach/create a screen in one line

If you’re a big fan of irssi and you’re running it on a remote server over SSH and inside a screen, then this a tip you might be interested in.

Just put the following line inside your .zshrc or .bashrc file:

alias rirssi='ssh [email protected] -t screen -dRUS irssi irssi'

This simple alias will allow you to:

Pretty cool isn’t it? ;-)

Hint from 2016

In the future we’re all using tmux now. Here’s how to do the exact same thing but using tmux.

tmux attach -d -t irssi || tmux new -s irssi irssi

The adventurous people can also combine this to mosh!

mosh [email protected] -- sh -c "tmux attach -d -t irssi || tmux new -s irssi irssi"


Comments

comments powered by Disqus