home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / linux / utilities-general / tidyloop < prev    next >
Text File  |  2006-05-04  |  240b  |  13 lines

  1. #!/bin/sh
  2. # Created by Ben Okopnik on Wed Apr 27 17:21:42 EDT 2005
  3.  
  4. [ -z "$1" ] && { printf "Usage: ${0##*/} <file.html>\n"; exit; }
  5.  
  6. while :
  7. do
  8.         clear
  9.         tidy -o /dev/null "$1" 2>&1|sed -n '/^$/,$d;1,35p'
  10.         sleep 2
  11. done
  12.  
  13.