make getpeername() return the original socket address which before it was intercepted
[hband-tools.git] / half-baked / catpdf
blob2114edbd13752ac28c51868e7d30d3b0c5e3253d
1 #!/bin/bash
2 if [ $# -lt 1 ]
3 then
4 set -- -
5 fi
6 for file in "$@"
7 do
8 pdftotext -layout -nopgbrk "$file" -
9 done