Usage¶
Interactive TUI¶
Run tweak with no arguments to open the interactive TUI. Use / to search, arrow keys to navigate, Enter to select.
Direct Command¶
tweak <command> [input] [flags]
# Examples
tweak md5 "Hello World"
tweak base64-encode "hello"
tweak json-yaml config.json
File Input¶
Pipe Input¶
echo "Hello World" | tweak md5
cat file.txt | tweak base64-encode
curl https://api.example.com | tweak json
Chaining¶
# MD5, then base64-encode the result
tweak md5 "hello" | tweak base64-encode
# Multi-step pipeline
echo "Hello World" | tweak base64-encode | tweak md5