home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 18
/
aminetcdnumber181997.iso
/
Aminet
/
misc
/
emu
/
AROSdev.lha
/
AROS
/
docs
/
src
/
getfiledate
< prev
next >
Wrap
Text File
|
1997-01-27
|
186b
|
11 lines
#!/bin/sh
#
# This script print a "nice" date for a file. Just call it with the name
# if the file as parameter.
#
/bin/ls -le $1 | \
gawk ' { \
print $8". "$7" "$10; \
}'