Last active
May 12, 2018 16:46
-
-
Save wfjsw/1eccec31ebb7146d5eae1f4fe437b020 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
transfer() { if [ $# -eq 0 ]; then echo -e "No arguments specified. Usage:\necho tansfer /tmp/test.md\ncat /tmp/test.md | transfer test.md"; return 1; fi | |
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://tansfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "http://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; echo ; rm -f $tmpfile; } | |
alias oraclefetch='wget -c --header "Cookie: oraclelicense=accept-securebackup-cookie"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment