我写了脚本,但这不起作用。我需要这个脚本,它将从文件 etc/hosts 中获取 IP。怎么做?
脚本:(这不起作用)
host=www.example.com
ip=$(getent hosts "$host" | awk '{ print $1}')
echo $ip
我写了脚本,但这不起作用。我需要这个脚本,它将从文件 etc/hosts 中获取 IP。怎么做?
脚本:(这不起作用)
host=www.example.com
ip=$(getent hosts "$host" | awk '{ print $1}')
echo $ip