Answers for "find file by name linux"

3

linux find files by name

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

bash find file by name

find . -name 'mystring*'
Posted by: Guest on June-02-2020
3

find by name linux

# dot is curr dir 
find . -name "*.txt"
Posted by: Guest on December-07-2020
10

how to find a file in linux terminal

find /path/to/folder/ -iname *file_name_portion*
Posted by: Guest on April-01-2020
2

find linux with extension

find /home/username/ -name "*.err"
Posted by: Guest on September-19-2020
1

find file by name linux

find /path -name *.txt
Posted by: Guest on October-05-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language