소스 검색

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


불러오는 중...
취소
저장