. 100% free, always. No subscriptions, no premium levels.
. Completely free - forever. No tiers, no hidden plans. Designed for us.
This page is a technical reference for the site owner. It explains how to package and distribute the command-line tool and provides a reference for its usage and core script.
There are two primary ways to make the hownz
tool available for installation. The method you choose determines the command users will run.
Once installed globally, the hownz
command can be used in any terminal. It's highly flexible, allowing you to clean text directly, pipe content from other commands (like echo
or curl
), or process entire files. By default, it prints to the console, but its behavior can be modified with the flags below.
hownz "text"
Cleans a string → console output.
hownz -a "text"
Cleans a string → random .txt file.
echo "text" | hownz
Cleans piped text → random .txt file.
hownz < in.txt --here
Redirects `in.txt` as input; `--here` forces output to console, ideal for piping to other commands.
hownz -s < article.txt
Summarizes `article.txt` using the Gemini API (`-s`); automatically saves the output to a new file.
hownz -m "text"
Marks unrecognized chars with '#'.
hownz -l "text"
Includes language characters (app.json).
hownz -e "text"
Includes emoji characters (admin.json).
hownz --list
Shows all contraction replacements.
hownz -t
Shows all approved characters.
hownz --lg
Shows language dictionary (app.json).
hownz --ej
Shows emoji dictionary (admin.json).
hownz -v
Shows the current version number.
hownz -h
Displays the detailed help guide.
hownz "text with รฑ and รถ" -lm
Combines language (`-l`) and mark (`-m`) flags to process special characters.
curl -sL ip.im | hownz -s --here
Pipes web content from `curl` to be summarized by the AI and prints the result to the console.
hownz "text with emoji ๐"
Removes emojis and other unrecognized characters by default.
cat log.txt | hownz -s -o summary.txt
Pipes a local file to the AI summarizer (`-s`) and saves the output to a specified file (`-o`).
hownz < document.txt
Cleans a file's content and saves it to a new, randomly named .txt file.
hownz "some text" -o result.txt
Cleans a string and saves it to the specified 'result.txt' file.
Loading script...
Explore the technical documentation, CLI usage, and distribution guide.
View Admin & Developer Guide