Commit 8e8cdc05 authored by Cooper Maruyama's avatar Cooper Maruyama
Browse files

Add coffeescript aliases: cf, cfc, cfp

cf: compile and show output
cfc: compile & copy
cfp: compile from pasteboard & print
parent ff4663a6
#!/bin/zsh
# compile a string of coffeescript and print to output
cf () {
coffee -peb $1
}
# compile & copy to clipboard
cfc () {
cf $1 | tail -n +2 | pbcopy
}
# compile from pasteboard & print
alias cfp='coffeeMe "$(pbpaste)"'
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