瀏覽代碼

fixed issue in alias example

tags/v1.0.0
Remco 9 年之前
父節點
當前提交
4a544306ea
共有 2 個文件被更改,包括 6 次插入2 次删除
  1. +3
    -1
      transfersh-server/static/index.html
  2. +3
    -1
      transfersh-web/index.html

+ 3
- 1
transfersh-server/static/index.html 查看文件

@@ -166,7 +166,9 @@
<div class="terminal"> <div class="terminal">
<code> <code>
<span class="code-title"># Add this to .bashrc or its equivalent</span> <span class="code-title"># Add this to .bashrc or its equivalent</span>
<br>transfer() { # write to output to tmpfile because of progress bar tmpfile=$( mktemp -t transferXXX ) curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile; cat $tmpfile; rm -f $tmpfile; }
<br>transfer() {
<br># write to output to tmpfile because of progress bar
<br>tmpfile=$( mktemp -t transferXXX ); curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile; cat $tmpfile; rm -f $tmpfile; }
<br> <br>
<br>alias transfer=transfer <br>alias transfer=transfer
<br> <br>


+ 3
- 1
transfersh-web/index.html 查看文件

@@ -168,7 +168,9 @@
<div class="terminal"> <div class="terminal">
<code> <code>
<span class="code-title"># Add this to .bashrc or its equivalent</span> <span class="code-title"># Add this to .bashrc or its equivalent</span>
<br/>transfer() { # write to output to tmpfile because of progress bar tmpfile=$( mktemp -t transferXXX ) curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile; cat $tmpfile; rm -f $tmpfile; }
<br/>transfer() {
<br># write to output to tmpfile because of progress bar
<br>tmpfile=$( mktemp -t transferXXX ); curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile; cat $tmpfile; rm -f $tmpfile; }
<br/> <br/>
<br/>alias transfer=transfer <br/>alias transfer=transfer
<br/> <br/>


Loading…
取消
儲存