Exheredludis/paludis/repositories/e/ebuild/utils/wrapped_getmtime
2010-10-27 08:01:15 +01:00

22 lines
287 B
Bash
Executable File

#!/usr/bin/env bash
case $(uname -s) in
FreeBSD)
stat -f '%m' "$@"
exit $?
;;
Linux)
mtime=$(stat -c '%Y' "$@")
ret=$?
echo ${mtime%%.*}
exit $ret
;;
*)
echo "!!! Don't know how to use stat on this system" 1>&2
exit $?
;;
esac