Skip to content

Commit

Permalink
README.md: clarify the option flags used in the examples
Browse files Browse the repository at this point in the history
When introducing a new option, mention the exact flag that the user
needs to use for that option, instead of letting them figure it out from
the code example.
  • Loading branch information
aklomp committed Jun 10, 2022
1 parent 582cb46 commit ca4dc47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ single argument -- the name of the pdf to shrink -- it writes the result to
./shrinkpdf.sh in.pdf > out.pdf
```

You can optionally provide an output file:
You can provide an output file with the `-o` option:

```sh
./shrinkpdf.sh -o out.pdf in.pdf
```

And an output resolution in DPI (default is 72 DPI):
And an output resolution in DPI (default is 72 DPI) with the `-r` option:

```sh
./shrinkpdf.sh -r 90 -o out.pdf in.pdf
Expand Down

0 comments on commit ca4dc47

Please sign in to comment.