소스 검색

add two snippet functions

pull/1/head
10sr 11 년 전
부모
커밋
5ff31d7d6c
1개의 변경된 파일31개의 추가작업 그리고 0개의 파일을 삭제
  1. +31
    -0
      bashrc

+ 31
- 0
bashrc 파일 보기

@@ -730,6 +730,37 @@ winln(){
fi
}



#################################################
## pastebin services
## https://wiki.archlinux.org/index.php/List_of_Applications/Internet#Pastebin_clients

sprunge(){
# http://sprunge.us
if test -z "$1"
then
curl -F 'sprunge=<-' http://sprunge.us
else
curl http://sprunge.us/$1
fi
}

dpaste(){
# http://dpaste.de
if test -z "$1"
then
curl -F 'content=<-' https://dpaste.de/api/
echo
else
curl https://dpaste.de/$1/raw/
fi
}


######################################
## Prompt

__my_moc_state(){
type mocp >/dev/null 2>&1 || return
test "`mocp -Q %state 2>/dev/null`" = PLAY || return


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