This commit is contained in:
2025-03-24 11:36:01 +01:00
parent 0ecbdd4585
commit b9c451e95c
72 changed files with 2699 additions and 376 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
for addr in $(cat $1)
do
x=$(expr substr $addr 1 8)
y=$(expr substr $addr 9 8)
z=$(expr substr $addr 17 8)
t=$(expr substr $addr 25 8)
addr_dot=$((2#$x)).$((2#$y)).$((2#$z)).$((2#$t))
echo $addr_dot
done>$2
exit