Angenommen, ich habe die folgende Struktur:
root
|
\
dir1
|
| \
| libfoo.so.4.2
| libfoo.so.4 -> libfoo.so.4.2
| libfoo.so -> libfoo.so.4
JunkThatShouldntBeCopied
dir2
Ich möchte libfoo.so
es auch kopieren und libfoo.so.4
darin libfoo.so.4.2
verwenden root/dir2
.
- Ich kann nicht das gesamte Verzeichnis kopieren, das sie enthält, da es viele andere Dateien enthält, die ich nicht haben möchte.
- Ich kenne auch nicht die genauen Namen der Dateien,
libfoo.so
auf die es verweist.
Wie kann ich das machen?
Antwort1
Mir fällt da sowas ein:
trace() {
arr+=("$1")
local next="$(readlink "$1")"
if [ -n "$next" ]; then
trace "$next"
fi
}
$ cd /tmp/a/
$ unset arr; trace 3
$ rsync -vl "${arr[@]}" /tmp/b/
created directory /tmp/b
1
2 -> 1
3 -> 2
sent 125 bytes received 70 bytes 390.00 bytes/sec
total size is 2 speedup is 0.01
$
Antwort2
cp -Pp /root/dir1/libfoo.so* /root/dir2/