Skip to content

Instantly share code, notes, and snippets.

@m4tlch
Created October 22, 2018 11:31
Show Gist options
  • Select an option

  • Save m4tlch/d8200d40178b69eeffe31ee7b532e94d to your computer and use it in GitHub Desktop.

Select an option

Save m4tlch/d8200d40178b69eeffe31ee7b532e94d to your computer and use it in GitHub Desktop.
ls in number notification
ls -l | awk '{k=0;for(i=0;i<=8;i++)k+=((substr($1,i+2,1)~/[rwx]/) \
*2^(8-i));if(k)printf("%0o ",k);print}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment