You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/zsh |
|
|
|
# compile a string of coffeescript and print to output |
|
cf () { |
|
coffee -peb $1 |
|
} |
|
# compile & copy to clipboard |
|
cfc () { |
|
cf $1 | pbcopy |
|
} |
|
|
|
# compile from pasteboard & print |
|
alias cfp='coffeeMe "$(pbpaste)"'
|
|
|