我有一个大问题。我的脚本在我的 Debian Squeeze 本地 VM 和 Mac OX 10.8 上运行良好,但在我的 Debian 服务器上运行良好……我检查了内核、bash 的所有版本……所有版本都一样!
我的脚本:
#!/bin/bash
# Version 1.0
ipaddr=$1
datel=$(date +"%d/%m/%Y %k:%M")
function valid_ip()
{
local ip=$ipaddr
local stat=1
if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\/[0-9]{1,2}$ ]]; then
OIFS=$IFS
IFS='.'
ip=($ip)
IFS=$OIFS
[[ ${ip[0]} -le 255 && ${ip[1]} -le 255 \
&& ${ip[2]} -le 255 && ${ip[3]} -le 255 ]]
stat=$?
fi
return $stat
}
valid_ip
if [ $? -eq "0" ]; then
nmap -sS -A $ipaddr --max-retries 3 -oX landiscover.xml --webxml 2>> nmap_error.log
echo "$datel Please wait during discover your network, this operation may take a while" >> landiscover.log
else
echo "$datel Please enter a valid network address : XXX.XXX.XXX./XX" >> landiscover.log
fi
if [ $? -eq "0" ]; then
echo "$datel Landiscover ran successfully !" >> landiscover.log
fi
当我使用调试选项运行此脚本时,我有以下输出:
loterm_g@vm11:/opt$ sh -x landiscover.sh 192.168.1.0/24
+
: not found.sh: 1:
+ ipaddr=192.168.1.0/24
+ date +%d/%m/%Y %k:%M
+ datel=30/07/2013 1:54
+
: not found.sh: 1:
landiscover.sh: 8: Syntax error: "(" unexpected
任何想法 ?