Case insensitive find command in Linux?
- Ganesh Kadam
- Aug 10, 2020
- 1 min read
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
Comentários