File Explorer

/proc/self/root/proc/thread-self/root/proc/self/root/usr/share/gawk

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 /.

bits2str.awk334 B · 17 lines
# bits2str --- turn an integer into readable ones and zeros function bits2str(bits,        data, mask){    if (bits == 0)        return "0"     mask = 1    for (; bits != 0; bits = rshift(bits, 1))        data = (and(bits, mask) ? "1" : "0") data     while ((length(data) % 8) != 0)        data = "0" data     return data}