Operating System - BSD - Notes

Finding files

Find the file source.txt:

find / -iname source.txt

Find the file(s) containing “source” in the filename:

find / -iname '*source*'