From da051d3785e4aae894d79c134fe3a7076a15a027 Mon Sep 17 00:00:00 2001 From: Remco Date: Mon, 20 Oct 2014 17:44:42 +0200 Subject: [PATCH] fixed small typo --- transfersh-web/index.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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