diff --git a/transfersh-web/index.html b/transfersh-web/index.html index 716293c..ba52c1f 100644 --- a/transfersh-web/index.html +++ b/transfersh-web/index.html @@ -153,10 +153,8 @@

Create an alias, and add it to .bashrc for faster use

$ transfer() { # write to output to tmpfile because of progress bar tmpfile=$( mktemp -t transfer ) curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile; cat $tmpfile; rm -f $tmpfile; } alias transfer=transfer

Now you can just use - transfercommand

- $transfer hello.txt - - + transfer command + $ transfer hello.txt