the cli tool of the base64 encode,decode written in rust.
$ cargo run e "hello world."
aGVsbG8gd29ybGQu
$ cargo run d "aGVsbG8gd29ybGQu"
hello world.
#base64 encode
$ udrs e "hello world."
aGVsbG8gd29ybGQu
$ udrs d "aGVsbG8gd29ybGQu"
hello world.
$ udrs ud "foo%20bar"
foo bar
$ udrs ud "https://github.com/ksk001100/seahorse" -l
ksk001100/seahorse
$ udrs ud "https://github.com/ksk001100/seahorse" -p
https
$ udrs ud "https://github.com/ksk001100/seahorse" -d
github.com
# domain -> ip address (v4)
$ udrs ud "https://github.com" -i
V4(52.192.72.89:443)
$ dig github.com
52.192.72.89
seahorse "0.7.1" -> "1.0.0"