find -type f -name '*R'
但是我收到了非法选项–t的消息.
find . -type f -name '*R'
您必须提供至少一条路径,但您实际可以提供您想要的数量:
find ~/Documents ~/Library -type f -name '*R'