Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Verdant
/
test
like
0
Modalities:
Text
Dataset card
Data Studio
Files
Files and versions
xet
Community
main
test
/
git
/
usr
/
share
/
awk
/
ctime.awk
Verdant
Upload 328 files
82618f7
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
234 Bytes
# ctime.awk
#
# awk version of C ctime(3) function
function
ctime(ts, format)
{
format =
"%a %b %e %H:%M:%S %Z %Y"
if
(ts ==
0
)
ts = systime()
# use current time as default
return strftime(format, ts)
}