Answers for "linux find files by name"

3

linux find files by name

# -iname flag ignores case
find / -iname mYtestFiLe.txt
Posted by: Guest on June-09-2021
1

linux find any file linux

#find a file and print with path
find . -print | grep -i *.txt
Posted by: Guest on January-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language