Last active
December 17, 2015 22:59
-
-
Save ahmadvaroqua/5685741 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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