From f6b7d2d16f5bc315ef32cbf99c626e5660c8539f Mon Sep 17 00:00:00 2001 From: staticsafe Date: Wed, 11 Jan 2012 19:17:27 -0500 Subject: [PATCH] Making octalperm *nix friendly. --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index a20ac99..b07a7ba 100644 --- a/.zshrc +++ b/.zshrc @@ -22,6 +22,6 @@ setopt inc_append_history #aliases alias rmdir='rm -r' alias sl='ls' -alias octalperm="stat -c '%A %a %n' *" +alias octalperm="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}'" alias myip="wget -qO- ifconfig.me/ip" alias memoryhog="ps aux | sort -nk +4 | tail" \ No newline at end of file