httpie: fix backslash syntax again

This commit is contained in:
Rico Sta. Cruz 2017-09-04 10:31:20 +08:00
parent 58865dcdf0
commit 2e90144760
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ $ http POST example.com/posts/3 \
name="John Doe" \ # = string
q=="search" \ # == URL parameters (?q=search)
age:=29 \ # := for non-strings
list:='[1,3,4]' # := json
list:='[1,3,4]' \ # := json
file@file.bin \ # @ attach file
token=@token.txt \ # =@ read from file (text)
user:=@user.json # :=@ read from file (json)