对于((v=0; v<
t
; v++))
do
awk '/TRAP-TYPE/{i++}i'$fname >tron
if ["$?-eq 0]
then
echo"找到 MIB 文件"
else
t=$t-1
fi一些其他命令
回显“MIB 不在目录中”
完成
当awk '/TRAP-TYPE/{i++}i' $fname >tron
失败时,我希望它跳过some other commands
并直接到达代码末尾并打印MIB not in directory
。
我该怎么做才能做到这一点? Bash 没有 goto。
答案1
我只是会some other commands
在echo "MIB file found"
和之间移动else
。