From f5c4671bfbad96bf346bd7e9a21fc4317b4959df Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 3 Dec 2022 17:00:20 +0530 Subject: Adds most of the tools --- coreutils-5.3.0-bin/share/awk/ctime.awk | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 coreutils-5.3.0-bin/share/awk/ctime.awk (limited to 'coreutils-5.3.0-bin/share/awk/ctime.awk') 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) +} -- cgit v1.2.3