mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-27 03:14:56 +01:00
16 lines
294 B
Bash
16 lines
294 B
Bash
#!/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='cf "$(pbpaste)"'
|
|
|
|
# compile from pasteboard and copy to clipboard
|
|
alias cfpc='cfp | pbcopy'
|