5 lines
78 B
Text
5 lines
78 B
Text
|
#!/bin/bash
|
||
|
|
||
|
ip=$(host -W 5 $1 | grep 'has address' | cut -d' ' -f4)
|
||
|
echo $ip
|