Skip to content

Instantly share code, notes, and snippets.

@wfjsw
Last active May 12, 2018 16:46
Show Gist options
  • Save wfjsw/1eccec31ebb7146d5eae1f4fe437b020 to your computer and use it in GitHub Desktop.
Save wfjsw/1eccec31ebb7146d5eae1f4fe437b020 to your computer and use it in GitHub Desktop.
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