1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-07-08 02:12:10 +02:00
build/pkg/bash/etc/skel/.bashrc

13 lines
217 B
Bash
Raw Normal View History

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'