| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | #!/bin/sh# Standalone installer for Unixs# Original version is created by shoma2da# https://github.com/shoma2da/neobundle_installerif [ $# -ne 1 ]; then  echo "You must specify the installation directory!"  exit 1fi# Convert the installation directory to absolute pathcase $1 in  /*) PLUGIN_DIR=$1;;  *) PLUGIN_DIR=$PWD/$1;;esacINSTALL_DIR="${PLUGIN_DIR}/repos/github.com/Shougo/dein.vim"echo "Install to \"$INSTALL_DIR\"..."if [ -e "$INSTALL_DIR" ]; then  echo "\"$INSTALL_DIR\" already exists!"fiecho ""# check git commandtype git || {  echo 'Please install git or update your path to include the git executable!'  exit 1}echo ""# make plugin dir and fetch deinif ! [ -e "$INSTALL_DIR" ]; then  echo "Begin fetching dein..."  mkdir -p "$PLUGIN_DIR"  git clone https://github.com/Shougo/dein.vim "$INSTALL_DIR"  echo "Done."  echo ""fiecho "Done."echo "Complete setup dein!"
 |