我有这个脚本。它在一台系统上运行良好,但在另一台机器上却出现错误:
1 #!/bin/bash
2 EXEC_DIR=`dirname ${0}`
3 source ${EXEC_DIR}/config.sh
4
5 last_exec_date=$(cat $EXEC_DIR/$collector_temp | tail -1)
6
7 if [ -f $EXEC_DIR/$collector_temp ]; then
8 last_exec_date=$(cat $EXEC_DIR/$collector_temp | tail -1)
9 else
10 date +%s >> ${EXEC_DIR}/$collector_temp
11 last_exec_date=$(cat $EXEC_DIR/$collector_temp | tail -1)
12 fi
13
14
15 ssh $dns_ssh bash -c "'
16 count=1
17 any_query_file=${query_file_path}${query_file}*
18 last_exec_date=${last_exec_date}
19 qfiles_dns=${qfiles_dns}
20 today="'$(date +%Y%m%d)'"
21
22 for a in "'$any_query_file'"; do
23 if test -f "'$a'"; then
24 :
25 else
26 echo "No queries.log.* files found iin $query_file_path"
27 exit 31
28 fi
29 done
30
31 for b in "'$any_query_file'"; do
32 time_stamp="'$(stat -c "%Z" $b)'"
33 if [[ "'$time_stamp'" -ge "'$last_exec_date'" ]]; then
34 file_rename="'$(printf "%s""%s""_%03d" '${query_file}' "$today" "$count" )'"
35 awk "'"{ if (NR % 10 == 0) print }"'" "'$b'" > "'$qfiles_dns/$file_rename'"
36 let count=count+1
37 fi
38 done
39
40 if [[ "'$count'" = "'1'" ]]; then
41 echo "'No new "'$query_file'" files found on "'$dns_ssh'" '"
42 exit 32
43 fi
44 '"
45
46 #### SUMIT
47
48 exit 12
49
50 #### SUMIT
51
它给了我这个错误:
无与伦比”。
计数=1:未找到命令。
any_query_file=queries.log.*:没有匹配。
last_exec_date=1419574736:未找到命令。
qfiles_dns=:未找到命令。
非法变量名。
any_query_file:未定义变量。
a:未定义变量。
else: endif 未找到。
变量中的某些值是从另一个脚本获取的。可能是什么错误?它在另一台机器上运行良好。
答案1
else: endif 未找到。
这和其他都是csh
错误消息。不知何故,您调用的csh
是该主机而不是bash
。您必须检查远程系统才能确切找出发生这种情况的原因。有人可能设置了别名来调用 csh 而不是 bash,或者他们可能替换了 bash 可执行程序,或者类似的事情。