1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-02 10:18:43 +02:00

Add some usefull bash aliases

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-05-19 21:07:59 +02:00
parent d5c8fce58b
commit 86120862c5

View file

@ -1,3 +1,12 @@
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
alias ..='cd ..'
alias ...='cd ../..'
alias cls='tput reset'
alias dir='ls -l'
alias ll='ls -l'
alias la='ls -la'
alias l='ls -alF'