diff options
author | Nick <nick@somerandomnick.ano> | 2010-05-12 21:29:59 +0000 |
---|---|---|
committer | Nick <nick@somerandomnick.ano> | 2010-05-12 21:29:59 +0000 |
commit | 91a8cee50c9cce580534b8cc6ca31265029ef6d2 (patch) | |
tree | fc51d8743dd321d3896e60700ae0db0fed53fd01 /scripts/ip2hex | |
parent | d895d7d758ee8a26dac6c9ccae4f55c5624f17d1 (diff) | |
download | resdb-91a8cee50c9cce580534b8cc6ca31265029ef6d2.tar.gz resdb-91a8cee50c9cce580534b8cc6ca31265029ef6d2.zip |
scripts for dom&ip, dn42 resdb, and doc (www.anonet2.org)
Diffstat (limited to 'scripts/ip2hex')
-rwxr-xr-x | scripts/ip2hex | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/ip2hex b/scripts/ip2hex new file mode 100755 index 0000000..2c8ce36 --- /dev/null +++ b/scripts/ip2hex @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ x"$1" = x ]; then + echo "Usage: $0 <IP>" >&2; exit 255 +fi + +for x in $(echo -n "$1" | tr . ' ') ; do + ./scripts/dec2hex "$x" +done | tr '\n' / | head -c -1 ; echo |