Created
October 12, 2012 19:21
-
-
Save qmmr/3880969 to your computer and use it in GitHub Desktop.
.bashrc
This file contains hidden or 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
echo "loading .bashrc ..." | |
eval `ssh-agent` | |
ssh-add | |
alias ls='ls -F --color --show-control-chars' | |
alias ll='ls -la' | |
function compile() { | |
echo "w8..." | |
echo "closure-compiler is working..." | |
echo "..." | |
echo "..." | |
echo "..." | |
java -jar /c/Dropbox/dev/javascript/closure-compiler/compiler.jar --js $1.js --js_output_file $1.min.js | |
echo "Finished! $1.js was successfully compiled to $1.min.js" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment