mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-02-08 05:53:01 +08:00
14 lines
234 B
Bash
14 lines
234 B
Bash
![]() |
#!/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)"'
|