README command is now local and removed the $

This commit is contained in:
Davide Berardi 2021-01-24 12:43:01 +01:00
parent a18c433d1a
commit f1a3a60042
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ make CFLAGS=DEBUG
The usage of the application is pretty simple:
```bash
$ snappy-fox <input-file> <output-file>
./snappy-fox <input-file> <output-file>
```
The input or the output files can be `-` to use, respectively stdin and
stdout.
@ -45,7 +45,7 @@ mkdir /tmp/extracted-cache-whatsapp
for f in
find ~/.mozilla/firefox/**/storage/default/https+++web.whatsapp.com/cache/ -name '*.final';
do
snappy-fox "$f" "/tmp/extracted-cache-whatsapp/$(basename $f)"
./snappy-fox "$f" "/tmp/extracted-cache-whatsapp/$(basename $f)"
done
```