Ganesh KadamAug 10, 20201 min readCase insensitive find command in Linux?All searches with -name switch are case sensitive and will not give results with capital letters. To get all cases, use the -iname option.find ./ -iname "qa*"Output./test/qatree.pdf ./test/qa.txt ./test/QAtest.txt ./home/qa
All searches with -name switch are case sensitive and will not give results with capital letters. To get all cases, use the -iname option.find ./ -iname "qa*"Output./test/qatree.pdf ./test/qa.txt ./test/QAtest.txt ./home/qa
Comments