error using “find” command in unix
问题 I was just trying the below code and it is not working.. please suggest to correct this code.. echo abc.txt | while read name; do find . -name $name; done output success : ./rak/abc.txt echo 'abc.txt pqr.txt' | while read name; do find . -name $name; done output error : find: 0652-009 There is a missing conjunction echo "abc.txt pqr.txt" | while read name; do find . -name $name; done output error : find: 0652-009 There is a missing conjunction same error with echo "abc.txt" "pqr.txt" | while