命令:
pip3 install fastapi[all]
错误:
zsh: no matches found: fastapi[all]
我使用的是配备 Python 3.8 的 MacBook Air 2020。
我需要检查该字符串是否M1039C28
位于目录的任何文件内/var/opt
。如果找到该字符串,
则应回显;如果未找到该字符串,则应回显。true
String not found
样本:
cd /var/opt/;
if [ find ./ -type f -exec grep -Hni "M1039C28" {} ';']
then
echo "String found"
else
INFO "String not found"
fi
Run Code Online (Sandbox Code Playgroud)