
qrencode
List of commands for qrencode:
-
qrencode:tldr:891b7 qrencode: Convert an input file to a QR code and save to an output file.$ qrencode -o ${path-to-output_file-png} -r ${path-to-input_file}try on your machineexplain this command
-
qrencode:tldr:ba63b qrencode: Convert a string to a QR code and print it in terminal.$ qrencode -t ansiutf8 ${string}try on your machineexplain this command
-
qrencode:tldr:be5b6 qrencode: Convert input from pipe to a QR code and print it in terminal.$ echo ${string} | qrencode -t ansiutf8try on your machineexplain this command
-
qrencode:tldr:e3515 qrencode: Convert a string to a QR code and save to an output file.$ qrencode -o ${path-to-output_file-png} ${string}try on your machineexplain this command