소스 검색

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


불러오는 중...
취소
저장