何かがbashスクリプトのIPの形式であることを検証できるようにしたいのですが、オンラインでさまざまなコードを見つけました...それらはすべてほぼ同じ構造を持っています..
#!/bin/bash
valid_ip()
{
local ip=$1
echo $ip
if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
ret=0 # is an IP
else
ret=1 # isn't an IP
fi
return $ret
}
# SCRIPT -------------------------------------
#clear the table
ipfw table 1 flush
ips=$(dig -f ./hostnames.txt +short)
# For each of the IPs check that it is a valid IP address
# then check that it does not exist in the ips file already
# if both checks pass append the IP to the file
for ip in $ips
do
if valid_ip $ip; then
if grep -R "$ip" "~/Dropbox/ProxyBox Stuff/dummynet/ips.txt"; then
echo "$ip already exists"
else
echo $ip >> ips.txt
fi
fi
done
# get the IP's and add them to table 1
cat ips.txt | while read line; do
ipfw table 1 add $line
done
とにかく、次のエラーが表示されます
./script.sh: 18: ./script.sh: [[: not found
なぜこのテストを完了できないのか理解できません...助けていただければ幸いです。
私はスクリプトを呼び出します
sudo ./script.sh
sudo の使用が問題の一因になっていると思いますが、スクリプトの他の部分には sudo p が必要です。