home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / A / ETC / _ETC.TAR / usr / bin / filesize
Encoding:
Text File  |  1995-01-06  |  102 b   |  7 lines

  1. #!/bin/sh
  2. #
  3. # Print the size of a file, in bytes.
  4. #
  5. SIZE=`ls -l -d -G $1 | cut -b23-32`
  6. echo -n $SIZE
  7.