Linux: Symlinks kopieren und ihre Hierarchie

Linux: Symlinks kopieren und ihre Hierarchie

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.soes auch kopieren und libfoo.so.4darin libfoo.so.4.2verwenden 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.soauf 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/

verwandte Informationen