I am trying to list the files only with the letter "R" at the end. I used find
as follows in macOS Terminal,
find -type f -name '*R'
But I got the message saying illegal option --t
.
The first argument to find
is the path where it should start looking. The path .
means the current directory.
find . -type f -name '*R'
You must provide at least one path, but you can actually provide as many as you want:
find ~/Documents ~/Library -type f -name '*R'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With