Fix typo in `blob set` examples

This commit is contained in:
Netscape Navigator 2019-09-22 12:41:02 -05:00
parent fd5393252c
commit 7b0d008463
1 changed files with 4 additions and 2 deletions

View File

@ -129,8 +129,10 @@ pigeon identity show
pigeon blob set '"Lol, data"'
# => &2e7a0bc31f3c4fe6114051c3a56c8ed8a030b3b394df7d29d37648e9b8cbf54b.sha256
# Or use echo for big files:
echo '"Lol, data"' > pigeon blob set
# Or use pipes for big files:
echo "Lol, data" | pigeon blob set
# => &2e7a0bc31f3c4fe6114051c3a56c8ed8a030b3b394df7d29d37648e9b8cbf54b.sha256
cat "pigeon.jpg" | pigeon blob set
# => &2e7a0bc31f3c4fe6114051c3a56c8ed8a030b3b394df7d29d37648e9b8cbf54b.sha256