home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff319.lzh / CNewsSrc / cnews.orig.lzh / misc / sizeof < prev   
Text File  |  1989-06-27  |  292b  |  16 lines

  1. #!/bin/sh
  2. # sizeof - report size of files, totalled
  3.  
  4. case $# in
  5. 0)    echo "Usage: sizeof file ..." >&2 ; exit 2 ;;
  6. esac
  7.  
  8. ls -ld $* 2>/dev/null | awk 'BEGIN { tot = 0 }
  9.     {
  10.         if (NF == 8)
  11.             tot += $4
  12.         else if (NF == 9)    # stupid clowns in AT&T changed format
  13.             tot += $5
  14.     }
  15.     END { print tot }'
  16.