在下面的这个目录列表中,我试图将所有“example*.file”移动到“test”目录中。
我试过做类似mv * ./test/
但只移动文件夹而不仅仅是文件的事情,我查看了 mv --help 并且找不到忽略文件夹的选项。我也尝试过不带 -r 的 cp 但它没有用。有没有办法从根目录触摸文件到多个目录,例如在下面的树中,你会在里面测试然后触摸在它里面的所有目录中创建文件,而不仅仅是你所在的根目录.
$ tree ./test/
./test/
├── 1
│ └── example.file
├── 10
│ └── example (14th copy).file
├── 11
│ └── example (12th copy).file
├── 12
│ └── example (7th copy).file
├── 13
│ └── example (17th copy).file
├── 14
│ └── example (16th copy).file
├── 15
│ ├── example (14th copy).file
│ └── example (15th copy).file
├── 16
│ ├── example (12th copy).file
│ └── example (13th copy).file
├── 17
│ └── example (11th copy).file
├── 18
│ └── example (10th copy).file
├── 19
│ └── example (9th copy).file
├── 2
│ └── example (3rd copy).file
├── 20
│ └── example (8th copy).file
├── 3
│ └── example (5th copy).file
├── 4
│ └── example (4th copy).file
├── 5
│ └── example (8th copy).file
├── 6
│ └── example (11th copy).file
├── 7
│ └── example (13th copy).file
├── 8
│ └── example (another copy).file
└── 9
└── example (copy).file
20 directories, 22 files