File Explorer

/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
walkarray.awk214 B · 10 lines
function walk_array(arr, name,      i){    for (i in arr) {        if (isarray(arr[i]))            walk_array(arr[i], (name "[" i "]"))        else            printf("%s[%s] = %s\n", name, i, arr[i])    }}