将查找命令输出重定向到文件

时间:2017-03-07 07:05:03

标签: find

#!  /bin/ksh
inputfile="/lawson/usr/u105513/LibList1.csv"

outfile="2.txt"


while read Libname
do
   echo $Libname
   find /ptchdev5/apps/patch10/ -name $Libname -print > $outfile
done < $inputfile

exit 0

我正在尝试将find命令的输出重定向到文件

我试过#! / bin / sh的 find / ptchdev5 / apps / patch10 / -type f -name $ Libname -print&gt; $ OUTFILE

但没有任何效果,输出文件仅为空白

0 个答案:

没有答案