Param utils
This commit is contained in:
parent
1761a3d152
commit
22dcf20cd0
17
bashrc
17
bashrc
|
@ -60,14 +60,19 @@ shopt -s histappend
|
||||||
shopt -s hostcomplete
|
shopt -s hostcomplete
|
||||||
shopt -s autocd
|
shopt -s autocd
|
||||||
|
|
||||||
alias ls='ls --group-directories-first --time-style=+"%d/%m/%Y %H:%M" --color=auto -F'
|
export LS_OPTIONS='--group-directories-first --time-style=+"%d/%m/%Y %H:%M" --color=auto --classify --human-readable'
|
||||||
alias ll='ls -l --group-directories-first --time-style=+"%d/%m/%Y %H:%M" --color=auto -F'
|
alias ls="ls $LS_OPTIONS"
|
||||||
alias la='ls -la --group-directories-first --time-style=+"%d/%m/%Y %H:%M" --color=auto -F'
|
alias ll="ls -l $LS_OPTIONS"
|
||||||
|
alias la="ls -la $LS_OPTIONS"
|
||||||
alias al=sl
|
alias al=sl
|
||||||
alias grep='grep --color=tty -d skip'
|
alias grep='grep --color=tty -d skip'
|
||||||
alias cp="cp -i" # confirm before overwriting something
|
alias mkdir='mkdir -v'
|
||||||
alias df='df -h' # human-readable sizes
|
alias cp="cp -i"
|
||||||
alias free='free -m' # show sizes in MB
|
alias mv="mv -iv"
|
||||||
|
alias dd='dd status=progress'
|
||||||
|
alias rm='rm -Iv --one-file-system'
|
||||||
|
alias free='free -m'
|
||||||
|
alias df='df -h'
|
||||||
|
|
||||||
# Solarized theme for tty, the dark version.
|
# Solarized theme for tty, the dark version.
|
||||||
# Based on:
|
# Based on:
|
||||||
|
|
Loading…
Reference in a new issue