{
"name": "base32",
"description": "Base32 encode/decode data and print to standard output",
"options": [
{
"names": [
"--help",
"-h"
],
"description": "Display this help and exit"
},
{
"names": [
"--decode",
"-d"
],
"description": "Decode data"
},
{
"names": [
"--ignore-garbage",
"-i"
],
"description": "When decoding, ignore non-alphabet characters"
},
{
"names": [
"--wrap",
"-w"
],
"description": "Wrap encoded lines after COLS character (default 76). Use 0 to disable line wrapping",
"takes_arg": true,
"arg": {
"name": "COLS",
"suggestions": [
"76",
"78",
"80",
"100",
"120",
"160",
"0"
]
}
},
{
"names": [
"--version"
],
"description": "Output version information and exit"
}
],
"args": [
{
"name": "FILE",
"description": "File to base32 encode/decode",
"template": "filepaths"
}
]
}