You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
350 B
16 lines
350 B
unset GREP_OPTIONS
|
|
|
|
# https://zhuanlan.zhihu.com/p/33050965
|
|
alias nvs='nvidia-smi'
|
|
alias his='history'
|
|
alias jobs='jobs -l'
|
|
alias ports='netstat -tulanp'
|
|
alias wget='wget -c'
|
|
|
|
## Colorize the grep command output for ease of use (good for log files)##
|
|
alias grep='grep --color=auto'
|
|
alias egrep='egrep --color=auto'
|
|
alias fgrep='fgrep --color=auto'
|
|
|
|
|