Added help screens.

This commit is contained in:
Robert R Evans
2010-10-02 15:04:24 -07:00
parent 6491f50a91
commit a7d1ee0c02
24 changed files with 29 additions and 2304 deletions

View File

@@ -20,7 +20,7 @@ do
source $config_file
done
unset config_file
# Plugins
PLUGINS="${BASH}/plugins/*.bash"
for config_file in $PLUGINS
@@ -47,4 +47,18 @@ CUSTOM="${BASH}/custom/*.bash"
for config_file in $CUSTOM
do
source $config_file
done
done
#
# Custom Help
function bash-it() {
echo "Welcome to Bash It!"
echo
echo "Here is a list of commands you can use to get help screens for specific pieces of Bash it:"
echo
echo " rails-help This will list out all the aliases you can use with rails."
echo " git-help This will list out all the aliases you can use with git."
echo
}