我收到以下行的错误替换错误:
cur_hour=${cur_hour:11:2}
相关代码在这里:
while :
do
cur_hour=`date`
cur_hour=${cur_hour:11:2}
if [ <some comparisons> ]
then
<some other code here>
fi
done
当我尝试&#34;麻烦&#34;手动代码它工作正常,但在脚本中它会导致错误。任何帮助表示赞赏。