我刚刚在“九州”进行方案规划,并有一个我无法解决的小问题。 我的这篇文字的目的是向用户提供他们希望使用的扫描类型的各种选择。 该扫描仪根据所选择的选择,发现有特定变量的重复档案。
我根本不能让它工作,不知为什么?
另外,请让我就如何更好地展示甄选屏幕提出建议。 我只重复了我守则的部分内容,因为我要说我的目标其余部分。
#!/bin/bash
same_name="1"
filesize="2"
md5sum="3"
different_name="4"
echo "The list of choices are, same_name=1, filesize=2, md5sum=3 and different name=4"
echo "Search for files with the:"
read choice
if [$choice == "$same_name" ];then
find /home/user/OSN -type f -exec basename {} ; | sort > filelist.txt
find /home/user/OSN -type f -exec basename {} ; | sort | uniq -d > repeatlist.txt
else
ls -al /home/user/OSN >2filelist.txt
fi