第1个回答 2013-09-10
#!/bin/bash
read -p "请输入需要查找的文件的路径:" f_path
read -p "请输入需要查找的文件名:" file
ls $f_path/$file 2>/dev/null
if [ $? == 0 ]
then
echo $file >>./shell.csv
else
echo -e "\t $file" >>./shell.csv
fi
*******************************************************************************
[root@localhost test]# cat shell.csv
yes no
*********************************************************************************
执行:
[root@localhost test]# bash shell.sh
请输入需要查找的文件的路径:/root/zhaoru/test
请输入需要查找的文件名:aaa