A bash plugin to manage plugins
(Skip this step if you already have a bash_plugins folder.)
{
# simply copy-pasta this whole block, or customize these vars and copy-pasta the rest
bash_plugins_dir=~/.bash_plugins
bash_startup_file=~/.bash_profile
if ! [[ -d $bash_plugins_dir ]]; then
mkdir $bash_plugins_dir
fi
if ! grep -q '\*\.plugin\.sh' $bash_startup_file; then
cat >> $bash_startup_file <<BASH
export BASH_PLUGINS_DIR="$bash_plugins_dir"
for plugin in \$(find \$BASH_PLUGINS_DIR -name '*.plugin.sh'); do source \$plugin; done
BASH
export BASH_PLUGINS_DIR="$bash_plugins_dir"
fi
}
{
# simply copy-pasta this whole block
plugin_url=https://gist.github.com/15a67d9f5d34f002162de2a73b543bb8
if bashplug -vq >/dev/null 2>&1; then
bashplug add "$plugin_url"
elif [[ -n "$BASH_PLUGINS_DIR" ]]; then
(
set -e
cd "$BASH_PLUGINS_DIR"
git clone $plugin_url
dir_name="$(ls -rtd1 $(find * -maxdepth 0 -type d) | tail -n1)"
plugin_name="$(basename $(find $dir_name -name '*.plugin.sh') .plugin.sh)"
if ! [[ "$dir_name" == "$plugin_name" ]] && ! [[ -d "$plugin_name" ]]; then
mv "$dir_name" "$plugin_name"
dir_name="$plugin_name"
fi
for plugin in $(find $dir_name -name '*.plugin.sh'); do source $plugin; done
)
else
cat<<EOF
Could not find your BASH_PLUGINS_DIR. Did not install plugin.
Have you followed the *Set up bash_plugins folder* steps yet?
EOF
fi
}