8 lines
246 B
Bash
8 lines
246 B
Bash
#!/bin/bash
|
|
|
|
(ssh adelcambre@screen_host -o PermitLocalCommand=no \
|
|
": > .irssi/fnotify ; tail -f .irssi/fnotify " | \
|
|
while read heading message; do \
|
|
growlnotify -t "${heading}" -m "${message}"; \
|
|
done)&
|