Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
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
about 3 years ago
Raw
Download with hf CLI
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)
}