File Explorer

/proc/2/root/usr/share/awk

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

0 dirs
27 files
ctime.awk234 B · 13 lines
# 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)}