forked from Casal2/CASAL2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalias.txt
More file actions
40 lines (29 loc) · 769 Bytes
/
alias.txt
File metadata and controls
40 lines (29 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
alias cp='cp -i'
alias mv='mv -i'
alias rm='rm -i'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias gsh='git status | head -40'
alias head1='head -10'
alias head2='head -20'
alias head3='head -30'
alias head4='head -40'
alias l='ls -CF'
alias l.='ls -d .* --color=auto'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls -aFC --color=auto'
alias lt='ls -lt'
alias lth='ls -lt | head2 '
alias lth1='ls -lt | head1 '
alias lth2='ls -lt | head2 '
alias lth3='ls -lt | head3 '
alias lth4='ls -lt | head4 '
alias psa='ps aucx'
alias psc='ps auc'
alias pst='pstree -a -h'
alias psx='ps aux'
alias tree='tree -C'
alias vi='vim'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'