Skip to content

Instantly share code, notes, and snippets.

@ahmadvaroqua
Last active December 17, 2015 22:59
Show Gist options
  • Save ahmadvaroqua/5685741 to your computer and use it in GitHub Desktop.
Save ahmadvaroqua/5685741 to your computer and use it in GitHub Desktop.
#!/bin/sh
# 2013-05-31 11:23:25 AV
# This will install vcprompt
# Go to the home directory
cd ~
# Create a bin folder if it doesn't already exist. This will not overwrite an exiting folder.
mkdir -p ~/bin;
# Copy the script from repo to local file
curl -sL https://github.com/djl/vcprompt/raw/master/bin/vcprompt > ~/bin/vcprompt;
# Need to make this executable
chmod 755 ~/bin/vcprompt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment