Created
May 3, 2010 13:38
-
-
Save jaymzcd/388096 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/bash | |
input='' | |
while read data | |
do | |
input=${input}${data} | |
done | |
echo $input | |
echo $input > /tmp/ccss.tmp.less | |
/var/lib/gems/1.9.1/bin/lessc /tmp/ccss.tmp.less /tmp/ccss.css | |
cat /tmp/ccss.css |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment