make getpeername() return the original socket address which before it was intercepted
[hband-tools.git] / user-tools / url_encode_bf
blob5bfcc8f790bc585fc7ee1d06c5446c42f5113507
1 #!/bin/sh
3 true <<EOF
4 =pod
6 =head1 NAME
8 url_encode_bf - Make all chars given either in parameters or in stdin to percent-encoded sequence
10 =cut
12 EOF
15 test -n "$*" && echo -n "$*" | od -t x1 -A n | tr " " % | tr -d "\n\r" || od -t x1 -A n | tr " " % | tr -d "\n\r"