Answers for "linux terminal find file by nam"

1

find file by name linux

find /path -name *.txt
find /path -type f -name test.txt
find /path -name failed*.* -type f
find /path -type f -not -name “*.html”
find / -name “file.txt” -size +4M
find /dev/ -type b -name “sda*”
Posted by: Guest on May-03-2022
2

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