在文本文件 test.txt 中,我有以下信息:
sl-gs5 desconnected Wed Oct 10 08:00:01 EDT 2012 1001
我想通过下一个命令行提取事件的时间:
hour=$(grep -n sl-gs5 test.txt | tail -1 | cut -d' ' -f6 | awk -F ":" '{print $1}')
我得到了“08”。当我尝试加 1 时,
14 echo $((hour+1))
我收到下一条错误消息:
./test2.sh: line 14: 08: value too great for base (error token is "08")
如果 Bash 中的变量没有类型,为什么?