文件放在同一个目录中 谢谢!作者: 2011yfrui 时间: 2022-3-20 20:03
今天百度学习了一天(小区封闭3天核酸筛查),请问老师:
if search --file --set=root /path/to/file-name1; then
command1 /path/to/file-name1
elif search --file --set=root /path/to/file-name2; then
command1 /path/to/file-name2
fi
command2
感觉 fi 是否少了一个?请指正上面是否正确?提前谢谢!作者: 2011yfrui 时间: 2022-3-20 21:12
谢谢老师!刚才有空,按老师菜单测试成功!
if [ -f "/path/to/xxx" ]; then
xxx
else
yyy
fi
按现学现卖的菜单:
if search --file --set=root /path/to/file-name1; then
command1 /path/to/file-name1
elif search --file --set=root /path/to/file-name2; then
command1 /path/to/file-name2
fi
command2