diff options
Diffstat (limited to 'coreutils-5.3.0-bin/share/awk/ctime.awk')
-rw-r--r-- | coreutils-5.3.0-bin/share/awk/ctime.awk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/coreutils-5.3.0-bin/share/awk/ctime.awk b/coreutils-5.3.0-bin/share/awk/ctime.awk new file mode 100644 index 0000000..0a50d26 --- /dev/null +++ b/coreutils-5.3.0-bin/share/awk/ctime.awk @@ -0,0 +1,11 @@ +# ctime.awk +# +# awk version of C ctime(3) function + +function ctime(ts, format) +{ + format = "%a %b %d %H:%M:%S %Z %Y" + if (ts == 0) + ts = systime() # use current time as default + return strftime(format, ts) +} |