0

在下面的列表中,我想检索以数据和用户开头的文件。还需要从子目录中检索。

drwxr-x--- 2 root root 4096 Jul 26 11:59 MIS
drwxr-x--- 2 root root 4096 Jul 26 12:04 recommendations
drwxr-x--- 3 root root 4096 Sep 11 07:45 script
drwxr-x--- 2 root root 4096 Sep 11 08:40 log
-rw-r----- 1 root root    0 Sep 11 09:48 data_collection.txt
-rw-r----- 1 root root    0 Sep 11 09:48 user_collection_12345.txt

请问有什么帮助吗?

4

1 回答 1

2

这使得它:

find /your/dir   -type f   \( -name "data*"   -o -name "user*" \)
                 ^^^^^^^      ^^^^^^^^^^^^    ^^^^^^^^^^^^^^^^
                  files       either data...     or user...
于 2013-09-11T08:46:30.813 回答