浏览代码

fix clip func for mac

pull/1/head
10sr 12 年前
父节点
当前提交
e5ee6ba532
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. +11
    -0
      bashrc

+ 11
- 0
bashrc 查看文件

@@ -298,6 +298,9 @@ catclip(){
if iswindows
then
cat /dev/clipboard | tr -d \\r
elif isdarwin
then
pbpaste
else
xclip -o -selection "clipboard"
fi
@@ -312,6 +315,14 @@ setclip(){
else
cat "$@" | sed -e 's/$/\r/' | tee /dev/clipboard
fi
elif isdarwin
then
if test $# -eq 0
then
pbcopy
else
cat "$@" | pbcopy
fi
else
if test $# -eq 0
then


正在加载...
取消
保存