Skip to content

Commit 0de362b

Browse files
authored
Update README.md
1 parent 3ad5ab5 commit 0de362b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Let's say that you have a file `foo.txt` in your current working directory that
1717
**Mac/Linux**
1818

1919
```bash
20-
cat foo.txt | docker run --rm -i --net=none leplusorg/qrcode qrencode -l L -o - > foo.png
20+
cat foo.txt | docker run --rm -i --net=none leplusorg/qrcode qrencode -o - > foo.png
2121
```
2222

2323
**Windows**
2424

2525
```batch
26-
type foo.txt | docker run --rm -i --net=none leplusorg/qrcode qrencode -l L -o - > foo.png
26+
type foo.txt | docker run --rm -i --net=none leplusorg/qrcode qrencode -o - > foo.png
2727
```
2828

2929
## Example using the filesystem
@@ -33,21 +33,21 @@ Same thing, assuming that you have a file `foo.txt` in your current working dire
3333
**Mac/Linux**
3434

3535
```bash
36-
docker run --rm -t --user="$(id -u):$(id -g)" --net=none -v "$(pwd):/tmp" leplusorg/qrcode qrencode -l L -r /tmp/foo.txt -o /tmp/foo.png
36+
docker run --rm -t --user="$(id -u):$(id -g)" --net=none -v "$(pwd):/tmp" leplusorg/qrcode qrencode -r /tmp/foo.txt -o /tmp/foo.png
3737
```
3838

3939
**Windows**
4040

4141
In `cmd`:
4242

4343
```batch
44-
docker run --rm -t --net=none -v "%cd%:/tmp" leplusorg/qrcode qrencode -l L -r /tmp/foo.txt -o /tmp/foo.png
44+
docker run --rm -t --net=none -v "%cd%:/tmp" leplusorg/qrcode qrencode -r /tmp/foo.txt -o /tmp/foo.png
4545
```
4646

4747
In PowerShell:
4848

4949
```pwsh
50-
docker run --rm -t --net=none -v "${PWD}:/tmp" leplusorg/qrcode qrencode -l L -r /tmp/foo.txt -o /tmp/foo.png
50+
docker run --rm -t --net=none -v "${PWD}:/tmp" leplusorg/qrcode qrencode -r /tmp/foo.txt -o /tmp/foo.png
5151
```
5252

5353
## Help

0 commit comments

Comments
 (0)