Skip to content

bambooCZ/punycode-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

punycode-cli

CLI interface for punycode with similiar options as the base64 CLI tool

Installation

sudo npm install -g punycode-cli

Usage

$ punycode --help
Usage:	/usr/local/bin/punycode [-hD] [-i in_file] [-o out_file]
  -h, --help     display this message
  -D, --decode   decodes input
  -i, --input    input file (default: "-" for stdin)
  -o, --output   output file (default: "-" for stdout)

Examples

UTF-8 domain to ASCII

echo -n "😄.example.com" | punycode;

ASCII domain to UTF-8

echo -n "xn--i28h.example.com" | punycode -D;

Contributing

Feel free