make getpeername() return the original socket address which before it was intercepted
[hband-tools.git] / user-tools / fmtkv
blob34e2cc09f1a7873e46b958e7b5d50d5338b48f39
1 #!/usr/bin/env perl
3 while(<>)
5 s/(".*?"|\S+?)=(".*?"|\S+)/\n\t$&/g;
6 print;
9 __END__
11 =pod
13 =head1 NAME
15 fmtkv - Tranform key=value (each optionally double-quoted) pairs into 1 pair by 1 line on the output
17 =cut