home *** CD-ROM | disk | FTP | other *** search
/ The UNIX CD Bookshelf / OREILLY_TUCB_UNIX_CD.iso / upt / examples / LINUX / ARCHIVE / CRUSH.Z / CRUSH / sbin / crush
Encoding:
Text File  |  1993-01-01  |  158 b   |  7 lines

  1. #!/bin/sed -f
  2. #
  3. # crush - Similar to the cat command, except it skips all lines that are
  4. #         empty or have only blanks and/or tabs in them.
  5.  
  6. /^[     ]*$/d
  7.