Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要获取所有以“dcc”结尾的文件的详细列表,所以我使用了这个:
find . -regex '.*\.dcc$'
它奏效了。但正如我写的那样,我需要一个详细的列表,ls -l所以我使用了这个:
ls -l
find . -ls -regex '.*\.dcc$'
但这向我展示了目录中的所有文件。
我设法克服了这个问题
ls -l `find . -regex '.*\.dcc$'`
但我很想知道这有什么问题:
订购很重要:
find . -regex '.*\.dcc$' -ls