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
Advertisement
Answer
You want to use cp -r
instead:
cp -r foo dest