Skip to content

Instantly share code, notes, and snippets.

@jbeluch
jbeluch / irssi-connect.sh
Created April 1, 2011 19:54
irssi remote notification via ssh
#!/bin/sh
# If we get an argument, use it for ssh port, otherwise use default of 22
if [ -n "$1" ]
then
port=$1
else
port=22
fi