QRify is a powerful and user-friendly command-line tool designed to quickly generate QR codes from text or URLs. Whether you need to share a website link, a contact detail, or any piece of text, QRify makes it simple to create scannable QR codes. This tool is ideal for developers and users who prefer working in the terminal environment.
QRify is a bash script that allows for easy QR code generation. Below are examples of how to use its core functionalities:
To convert a simple string into a QR code, use the
qrify command followed by your string.
qrify This is an example string
For strings that require multiple lines, use the
-m flag followed by your string enclosed in quotes.
Newlines can be represented using the \n escape
character.
qrify -m "This should be \n two lines"
- Quick QR code generation from the command line.
- Supports both single-line and multi-line text input.
- Simple and intuitive syntax.