Bash Find File berdasarkan Nama
find . -name 'mystring*'
Wicked Wryneck
find . -name 'mystring*'
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*”
find /path/to/folder/ -iname *file_name_portion*
#Example
find / -iname *test*
#Output
/downloads/test_2.txt
/downloads/test_1.csv
/home/ubuntu/first_test.txt
find . -print | grep -i filename/part_of_file_name
will print with the path
find /path -name *.txt
find / -name file.look