File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
4141In ` 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
4747In 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
You can’t perform that action at this time.
0 commit comments