/proc/self/root/proc/thread-self/root/proc/self/task/21/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 /.
# 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)}