Case 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


Comments