#!/bin/sh # $Id$ if which stat >/dev/null 2>&1 ; then stat -c'%A %h %U %G %s c%.19z m%.19y a%.19x %n' "$@" exit 0 fi while [ $1 ] ; do echo -n "ctime " ls -Fcld "$1" echo -n "mtime " ls -Ftld "$1" echo -n "atime " ls -Fuld "$1" shift done