Last active
December 10, 2015 16:59
-
-
Save odinecse/4464671 to your computer and use it in GitHub Desktop.
Terminal commands to remember
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
# 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