How to "send" Sass output to your clipboard
In response to this question on the Sass Google Group I came up with this one-liner to send the compiled CSS to your clipboard.
sass file.scss:file.css && cat file.css | pbcopyNot sure how useful this is, but there you go.