aboutsummaryrefslogtreecommitdiffstats
path: root/bin/mirssi
blob: 7ce8257336865dd0c31edef280428eba4e06c9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# start notification daemon
# connect to server and open port
# kill notification daemon

PATH=$HOME/bin/:$PATH
notify_irssi_server.pl &> /dev/null &
pid=$!

ssh -R 7090:localhost:7090 frq

kill $pid