10 lines
176 B
Bash
10 lines
176 B
Bash
|
# .bashrc
|
||
|
|
||
|
# User specific aliases and functions
|
||
|
export PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||
|
|
||
|
# Source global definitions
|
||
|
if [ -f /etc/bashrc ]; then
|
||
|
. /etc/bashrc
|
||
|
fi
|