Skip to content

Instantly share code, notes, and snippets.

@odinecse
Last active December 10, 2015 16:59
Show Gist options
  • Save odinecse/4464671 to your computer and use it in GitHub Desktop.
Save odinecse/4464671 to your computer and use it in GitHub Desktop.
Terminal commands to remember
# install jade and stylus
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone https://github.com/miksago/jade-tmbundle.git Jade
git clone https://github.com/LearnBoost/stylus.git Stylus
# lowercase files in current directory
ls | while read upName; do loName=`echo "${upName}" | tr '[:upper:]' '[:lower:]'`; mv "$upName" "$loName"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment