Beispiel...
Das ist was ich will.
/tmp $ cp -f -R --verbose /tmp/a /tmp/b
`/tmp/a' -> `/tmp/b'
`/tmp/a/file2' -> `/tmp/b/file2'
`/tmp/a/file1' -> `/tmp/b/file1'
Das will ich nicht.
/tmp $ cp -f -R --verbose /tmp/a /tmp/b
`/tmp/a' -> `/tmp/b/a'
`/tmp/a/file2' -> `/tmp/b/a/file2'
`/tmp/a/file1' -> `/tmp/b/a/file1'
Wie kann ich cp so verhalten lassen, als ob der Ordner noch nicht existiert hätte?
(Ich möchte es nicht vorher löschen. Nur einige Dateien aus / tmp / a, um in / tmp / b kopiert zu werden, ohne einen Unterordner a in / tmp / b zu erstellen. Es sieht also aus wie / tmp / b / file1 / tmp / b / file2 und so weiter.)