diff options
Diffstat (limited to 'bin/qr')
-rwxr-xr-x | bin/qr | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -16,7 +16,20 @@ help() { -s PIXEL_SIZE size of the pixel (default 10) -h, --help show this help message + Read data from STDIN and present a QR image with said data. + + + Examples: + + Link to my homepage: + + $ printf 'https://euandre.org' | qr + + + Numbers with a smaller pixel size: + + $ seq 99 | qr -s 5 EOF } |