Initial files add.

This commit is contained in:
Darren 'Tadgy' Austin 2016-10-02 02:14:39 +01:00
commit a3e2aceeed
15 changed files with 5155 additions and 0 deletions

11
.bash_logout Normal file
View 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 "${BASH_SOURCE##*/}: couldn't clear the screen"
fi
fi