Breaking up alias declarations into their own lines so that bash-it help aliases will register them
parent
e9a4718ae0
commit
9e9978033c
|
|
@ -4,7 +4,9 @@ about-alias 'pbcopy and pbpaste shortcuts to linux'
|
||||||
case $OSTYPE in
|
case $OSTYPE in
|
||||||
linux*)
|
linux*)
|
||||||
XCLIP=$(command -v xclip)
|
XCLIP=$(command -v xclip)
|
||||||
[[ $XCLIP ]] && alias pbcopy="$XCLIP -selection clipboard" && alias pbpaste="$XCLIP -selection clipboard -o"
|
[[ $XCLIP ]] && \
|
||||||
|
alias pbcopy="$XCLIP -selection clipboard" && \
|
||||||
|
alias pbpaste="$XCLIP -selection clipboard -o"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue