passing the first argument with double quote

This commit is contained in:
Takumi IINO 2015-07-08 11:16:44 +09:00
parent 3ea3384186
commit 1e8196de82

View File

@ -2,11 +2,11 @@
# compile a string of coffeescript and print to output
cf () {
coffee -peb $1
coffee -peb "$1"
}
# compile & copy to clipboard
cfc () {
cf $1 | pbcopy
cf "$1" | pbcopy
}
# compile from pasteboard & print