make getpeername() return the original socket address which before it was intercepted
[hband-tools.git] / user-tools / touchx
blobf45c16720234ac429dcd608e63e2ba2f451500db
1 #!/bin/sh
3 true <<EOF
4 =pod
6 =head1 NAME
8 touchx - set execution bit on files and creates them if neccessary
10 =cut
12 EOF
14 set -e
16 touch "$@"
17 chmod +x "$@"