wip debug
[hippotat] / w3mstracetodump
CommitLineData
75fce475
IJ
1#!/usr/bin/perl -n
2
00192d6a
IJ
3# strace -s70000 -ot w3m ./form.html
4
75fce475
IJ
5next unless s{^write\(7, "}{};
6next unless m/^POST|GET/..0;
7s{", \d+\)\s+= \d+\n}{};
8s{\\r}{\r}g;
9s{\\n}{\n}g;
10s{\\(.)}{$1}g;
11print or die $!;
12