1
0
Fork 0

bash: unalias all

This commit is contained in:
Von Random 2025-03-04 14:04:28 +02:00
parent e898af0e0d
commit 5e30fd7146

View file

@ -14,14 +14,13 @@ export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
PS1='\[\e[0m\][ \u@\h \[\e[34m\]\w\[\e[0m\] ]\n\$ '
unalias -a
diff() { command diff --color "$@"; }
tailf() { command less +F "$@"; }
rgrep() { command grep --exclude-dir=\.git -R "$@"; }
whence() { command -v "$@"; }
# ls
unalias ls ld ll 2>/dev/null
ls() { command ls --color=auto "$@"; }
ll() { ls -alh "$@"; }
ld() { ls -dlh "$@"; }