QR Code Generator
Generate QR Codes with QRify
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.
How to Use QRify
QRify is a bash script that allows for easy QR code generation. Below are examples of how to use its core functionalities:
Encoding a Single Line String
To convert a simple string into a QR code, use the
qrify
command followed by your string.
qrify This is an example string
Encoding a Multi-Line 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"
Key Features
- Quick QR code generation from the command line.
- Supports both single-line and multi-line text input.
- Simple and intuitive syntax.