Initial commit.
This commit is contained in:
commit
3d665e5e11
72 changed files with 3200 additions and 0 deletions
11
base-files/skel/.bash_logout
Normal file
11
base-files/skel/.bash_logout
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
if (( $SHLVL == 1 )); then
|
||||
if [ -x /usr/bin/clear_console ]; then
|
||||
/usr/bin/clear_console -q
|
||||
elif [ -x /usr/bin/clear ]; then
|
||||
/usr/bin/clear
|
||||
elif [ -x /usr/bin/tput ]; then
|
||||
/usr/bin/tput clear
|
||||
else
|
||||
echo -ne "\E[2J"
|
||||
fi
|
||||
fi
|
||||
4
base-files/skel/.bash_profile
Normal file
4
base-files/skel/.bash_profile
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# Source the personal bash set up.
|
||||
[ -e ~/.bashrc ] && . ~/.bashrc
|
||||
|
||||
# Add general environment set up here.
|
||||
1
base-files/skel/.bashrc
Normal file
1
base-files/skel/.bashrc
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Add bash personalisation set up here.
|
||||
Loading…
Add table
Add a link
Reference in a new issue