Created
September 19, 2013 18:47
-
-
Save shadyvb/6628068 to your computer and use it in GitHub Desktop.
modded ls to add permissions in octal as well,
reference: http://askubuntu.com/questions/152001/how-can-i-get-octal-file-permissions-from-command-line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias lso="ls -alG | 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