home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / docs / src / getfiledate < prev    next >
Text File  |  1997-01-27  |  186b  |  11 lines

  1. #!/bin/sh
  2. #
  3. # This script print a "nice" date for a file. Just call it with the name
  4. # if the file as parameter.
  5. #
  6.  
  7. /bin/ls -le $1 | \
  8. gawk ' { \
  9.     print $8". "$7" "$10;          \
  10. }'
  11.