今天百度学习了一天(小区封闭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
谢谢老师!刚才有空,按老师菜单测试成功!
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