dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit b8d3fac0ae234c61ad6fa65315294569d815dc9d
parent 610e588014b900d1f877ae65e6f40352ef55a465
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed, 19 Aug 2020 11:49:18 +0200

shell: more aliases

Former-commit-id: d499d7220977a866e99f6446133e533674b6f9d3
Diffstat:
Mshell/aliases | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/shell/aliases b/shell/aliases @@ -1,11 +1,14 @@ #!/bin/sh alias fucking="sudo" # Because sometimes I'm frustrated alias cp='cp -ivR' # Prompt if overwrite, verbose +alias grep='grep --color=auto' alias mv='mv -iv' # Prompt if overwrite, verbose +alias lynx='lynx -vikeys' alias mkdir='mkdir -pv' # Create intermediate dirs, verbose -alias ls="ls -lh" # List in long format, human-readable sizes -alias l="ls -lah" # Ls but with all files -alias ll="ls -FGlAhpO@" # Ls but show everything you can +alias ls="command ls -lh" # List in long format, human-readable sizes +alias l="command ls -lah" # Ls but with all files +alias ll="command ls -FGlAhpO@" # Ls but show everything you can +alias l.="command ls -a | grep '^\.'" # Ls but only dotfiles alias less='less -iRXc' # Search ig case, fix ANSI colors, don't send init strings, clear screen alias du="du -skh" # Show entry for each file, show block counts in 1kb blocks, human-readable sizes alias df="df -h" # Show human-readable sizes