Commit f7c24e18 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #4137 from troter/coffee-first-argument-with-double-quote

coffee: protect args with double-quote
parents 544eccb5 1e8196de
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
# compile a string of coffeescript and print to output # compile a string of coffeescript and print to output
cf () { cf () {
coffee -peb $1 coffee -peb "$1"
} }
# compile & copy to clipboard # compile & copy to clipboard
cfc () { cfc () {
cf $1 | pbcopy cf "$1" | pbcopy
} }
# compile from pasteboard & print # compile from pasteboard & print
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment