瀏覽代碼

updated readme with mktemp fix

tags/v1.0.0
Remco 9 年之前
父節點
當前提交
d29de37273
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      README.md

+ 1
- 1
README.md 查看文件

@@ -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;


Loading…
取消
儲存