#!/bin/sh
# Monitor interrupts in a loop
# Lex, 30-Jan-07

while [ 1 ]; do
  echo -en "\033[H\033[J"
  tail -n 24 </proc/interrupts
  sleep 1
done
