我正在编写一个 shell 脚本,并且需要包含一些验证。我的验证是检查备份文件夹是否存在,其中存在正确数量的文件。
例如,如果备份运行成功,那么备份文件夹中将有 23 个文件,我们可以继续。我的脚本有一些问题 - 任何人都可以看到我的脚本不起作用吗?
if [ 'ls -1 | wc -l' == 23 ]
then
echo -e "\n Matching! \n"
else
echo -e "\n Something has gone wrong!\n"
fi
我正在编写一个 shell 脚本,并且需要包含一些验证。我的验证是检查备份文件夹是否存在,其中存在正确数量的文件。
例如,如果备份运行成功,那么备份文件夹中将有 23 个文件,我们可以继续。我的脚本有一些问题 - 任何人都可以看到我的脚本不起作用吗?
if [ 'ls -1 | wc -l' == 23 ]
then
echo -e "\n Matching! \n"
else
echo -e "\n Something has gone wrong!\n"
fi