Skip to content

Instantly share code, notes, and snippets.

@qmmr
Created October 12, 2012 19:21
Show Gist options
  • Save qmmr/3880969 to your computer and use it in GitHub Desktop.
Save qmmr/3880969 to your computer and use it in GitHub Desktop.
.bashrc
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