各位好,写了下面这个脚本,完成在目录或者文件中查找输入的内容,并且输入含有输入字符串的文件名称,但是得不到正确的结果。
估计在这一句话:
grep -l '$findstring' $targetpath$append
在下面echo出来了之后单独运行,又能正确出结果、小弟很纳闷。望各位高手解答,谢谢~!
#!/bin/sh
echo "请输入你要查找的内容:"
read findstring
echo "请输入你要超找的路径或者文件"
read targetpath
while test -z $findstring
do
echo "输入为空请重新输入:"
read findstring
done
while test -z $targetpath
do
echo "路径或者文件为空请重新输入:"
read targetpath
done
append='/*'
if test -d $targetpath || test -f $targetpath
then
grep -l '$findstring' $targetpath$append
echo $targetpath$append
echo "grep -l '$findstring' $targetpath$append"
else
echo "不是一个文件或者路径"
fi