ftp -o - https://jcs.org/move_in | sh -

zshrc: add linux-specific 'ph'

+3
+3
.zshrc
··· 24 24 # let control+w only delete one directory of a path, not the whole word 25 25 export WORDCHARS='*?_[]~=&;!#$%^(){}' 26 26 27 + export LESS="-i" 28 + 27 29 # on non-interactive shells, just exit here to speed things up 28 30 if [[ ! -o interactive ]]; then 29 31 return ··· 128 130 # loonix 129 131 elif [[ $OSTYPE = linux* ]]; then 130 132 alias ls='ls -aFv' 133 + alias ph='ps auwwx | sort -rk 3,3 | head' 131 134 fi 132 135 133 136 # and the reverse