mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
gitignore.io correction
This commit is contained in:
parent
3e290ad7a8
commit
5fc64445bb
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ transfer() { if [ $# -eq 0 ]; then echo "No arguments specified. Usage:\necho tr
|
||||||
tmpfile=$( mktemp -t transferXXX ); if tty -s; then basefile=$(basename "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g'); curl --progress-bar --upload-file "$1" "https://transfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "https://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; rm -f $tmpfile; }
|
tmpfile=$( mktemp -t transferXXX ); if tty -s; then basefile=$(basename "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g'); curl --progress-bar --upload-file "$1" "https://transfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "https://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; rm -f $tmpfile; }
|
||||||
|
|
||||||
# gitignore.io interface
|
# gitignore.io interface
|
||||||
function gitignore() { curl -L -s https://www.gitignore.io/api/\$@ ;}
|
function gitignore() { curl -L -s https://www.gitignore.io/api/$@; }
|
||||||
|
|
||||||
# Get / Set clipboard contents
|
# Get / Set clipboard contents
|
||||||
alias setclip='xclip -selection c'
|
alias setclip='xclip -selection c'
|
||||||
|
|
Loading…
Reference in a new issue