6 lines
235 B
Bash
6 lines
235 B
Bash
|
if [[ "$OSTYPE" = darwin* ]] ; then
|
||
|
# https://trac.webkit.org/wiki/JSC
|
||
|
# jsc (or JavaScriptCore) is a Safari JavaScript REPL
|
||
|
alias jsc="/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources/jsc"
|
||
|
fi
|