Skip to content

Instantly share code, notes, and snippets.

@shazow
Last active August 18, 2016 19:30
Show Gist options
  • Save shazow/c4ccec8e44fc7e776e7e5c69aca38b21 to your computer and use it in GitHub Desktop.
Save shazow/c4ccec8e44fc7e776e7e5c69aca38b21 to your computer and use it in GitHub Desktop.
out of band ssh-chat ding watcher lol

First make a fifo

$ export fifopath=$PWD/chat.fifo
$ mkfifo "$fifopath"

Then start reading from the fifo and looking for the ^G ding escape code.

cat -u -e "$fifopath" | while read line; do
  if echo "$line" | grep -q '\^G'; then
    echo "DING: $line"  # <- Replace this with your fav notify command
  fi
done

Make sure you start reading the fifo before you start writing to it.

Now join ssh-chat and fork the output into our fifo (in a different terminal):

$ ssh -t chat.shazow.net | tee -a "$fifopath"  # Don't forget to set the $fifopath

You might be able to achieve the same thing inline (without using a separate watcher process and a fifo), but maybe this way it's more fun?

@sleibrock
Copy link

I tried this and it's working.

function ssh_chat(){
    mkfifo SSH
    cat -u -e SSH | while read line; do
    if echo "$line" | grep -q '\^G'; then
        notify-send "$line"
    fi
    done &
    ssh $1@chat.shazow.net | tee SSH
}

@shazow
Copy link
Author

shazow commented Aug 17, 2016

@sleibrock Careful doing that, you'll end up with a bunch of zombie processes after you're done ssh'ing.

@sleibrock
Copy link

Now how will we get rid of the garbage

2016-08-17-185801_374x105_scrot

@sleibrock
Copy link

Made it better, hosting it on a new repository here

2016-08-18-151221_359x86_scrot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment