浏览代码

Fix syntax for example Fish alias in Readme. (#159)

Fish alias/function example shown for using wget in the Readme uses Bash-style command substitution (with $) rather than Fish-style (no $) and will throw an error when used.
tags/v1.0.0
Josh W 5 年前
committed by Andrea Spacca
父节点
当前提交
d9a369f1c3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      README.md

+ 1
- 1
README.md 查看文件

@@ -69,7 +69,7 @@ funcsave transfer
```bash
function transfer --description 'Upload a file to transfer.sh'
if [ $argv[1] ]
wget -t 1 -qO - --method=PUT --body-file="$argv[1]" --header="Content-Type: $(file -b --mime-type $argv[1])" https://transfer.sh/$(basename $argv[1])
wget -t 1 -qO - --method=PUT --body-file="$argv[1]" --header="Content-Type: (file -b --mime-type $argv[1])" https://transfer.sh/(basename $argv[1])
else
echo 'usage: transfer FILE_TO_TRANSFER'
end


正在加载...
取消
保存