How to copy directories into a directory using install in bash?
Assume the nested directories foo/bar
and a empty directory dest
. I would like to call something like install foo dest
such that dest
contains the directory foo/bar
.
I have tried the following:
install foo dest
=> install: omitting directory "foo"
install -d foo dest
=> nothing happens
你想用cp -r
来代替:
cp -r foo dest
链接地址: http://www.djcxy.com/p/16314.html