home *** CD-ROM | disk | FTP | other *** search
/ Enter 2006 October / Enter 10 2006.iso / boot / isolinux / initrd / in / bin / filesize < prev    next >
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.