diff options
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -51,13 +51,15 @@ vimode #}}} #{{{ alias -alias ls='ls --color=auto -h' -alias ll='ls -lF' -alias la='ls -AF' +alias ls='ls --color=auto --human-readable' +alias ll='ls -l --classify' +alias la='ls --almost-all --classify' +alias lt='ll -t --reverse' alias grep='grep --color=auto' -alias pstree="pstree -achpG ${USER}" -alias ps='\ps --format user,pid,ppid,pgid,tty,stat,start,bsdtime,command' -alias ups='\ps -fxww --format user,pid,ppid,pgid,tty,stat,start,bsdtime,command' +alias pstree="pstree -achpA" +alias watchpstree='watch -n 2 pstree' +alias ps="\\ps --forest --format user,pid,ppid,stat,start,command" +alias ups="\\ps xww --forest --format user,pid,ppid,tty,stat,start,command" alias pps='ps | grep -i $1' alias penv='env | grep -i $1' alias rsync='rsync --progress' |