SCR/TP07/addr_dot.sh

5 lines
210 B
Bash
Raw Normal View History

2023-12-09 17:51:11 +01:00
#!/bin/bash
addr=$1
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=$(echo $((2#$x)).$((2#$y)).$((2#$z)).$((2#$t)))
echo $addr_dot