我试图复制" file.txt"将文件存入所有目录。
[root@mycomputer]# ls -lh
total 132K
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:47 ilo01
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:40 ilo02
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:40 ilo03
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:40 ilo04
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:40 ilo05
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:40 ilo06
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:40 ilo07
drwxr--r--. 2 postgres postgres 4.0K Jan 2 08:40 ilo08
drwxr--r--. 2 postgres postgres 4.0K Jan 2 10:03 ilo09
drwxr--r--. 11 postgres postgres 4.0K Jan 2 11:15 ilo10
-rw-r--r--. 1 postgres postgres 64K Jun 27 2016 file.txt
使用TAB查看要运行的命令的行为:
[root@mycomputer]# cp -p file.txt ilo[0-1][0-9]
ilo01/ ilo02/ ilo03/ ilo04/ ilo05/ ilo06/ ilo07/ ilo08/ ilo09/ ilo10/
但是我收到了这个错误:
[root@mycomputer]# cp -v -p file.txt ilo[0-1][0-9]*
`postgresTdas.txt' -> `ilo10/file.txt'
cp: omitting directory `ilo01'
cp: omitting directory `ilo02'
cp: omitting directory `ilo03'
cp: omitting directory `ilo04'
cp: omitting directory `ilo05'
cp: omitting directory `ilo06'
cp: omitting directory `ilo07'
cp: omitting directory `ilo08'
cp: omitting directory `ilo09'
同样的事情发生在:
[root@mycomputer]# cp -p file.txt ilo*
和
[root@mycomputer]# cp -p file.txt ilo*/
我不明白为什么" [0-1] [0-9]按照我需要的方式工作。
我假设该副本将把file.txt放在TAB显示的列表中。
我错过了什么?
答案 0 :(得分:2)
参数扩展到文件+所有目录
cp
将最后一个参数视为目标,因此其他目录被视为源。
并且因为cp
除非设置了-r
或-R
选项(复制目录和内容),否则不会复制目录,因此您将收到所有警告目录,但最后一个。
我会用bash / sh脚本代替:
for d in ilo[0-1][0-9]
do
cp -p file.txt $d
done
答案 1 :(得分:2)
cp
命令的大多数实现不能够复制到多个目标。你无能为力。您需要多次调用cp
来限制该限制。最简单的可能是这样的:
ls -d dir* | xargs -n 1 cp file.txt