home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / ADA / LOVELACE / wcout < prev    next >
Text File  |  1996-10-01  |  207b  |  12 lines

  1. #!/bin/sh
  2.  
  3. # wcout: take output of "wc" and make it human-readable.
  4.  
  5. # lines words bytes
  6.  
  7. sed -e 's/^ *//' \
  8.     -e 's/  */ lines, /' \
  9.     -e 's/\(lines, [^ ]*\)  */\1 words, and /' \
  10.     -e 's/$/ bytes/'
  11.  
  12.