Explorar el Código

updated readme with mktemp fix

tags/v1.0.0
Remco hace 9 años
padre
commit
d29de37273
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      README.md

+ 1
- 1
README.md Ver fichero

@@ -25,7 +25,7 @@ Add alias to .bashrc or .zshrc:
===
transfer() {
# write to output to tmpfile because of progress bar
tmpfile=$( mktemp -t transfer )
tmpfile=$( mktemp -t transferXXX )
curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile;
cat $tmpfile;
rm -f $tmpfile;


Cargando…
Cancelar
Guardar