5 lines
210 B
Bash
Executable File
5 lines
210 B
Bash
Executable File
#!/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 |