3

我试图在 Solaris OS 上复制一个链接,但发现它并没有简单地复制链接,而是复制链接指向的目录/文件的全部内容?这在 AIX、HP-UX、Linux 等其他操作系统中是没有的。

这是 Solaris OS 的正常行为吗?

4

4 回答 4

7

查理很接近,你想要-L,-H-P带有标志的-R标志(可能只是-R -P)。chmod(1)和存在类似的标志chgrp(1)。我从下面的手册页中粘贴了一段摘录。

例子:

$ touch x
$ ln -s x y 
$ ls -l x y 
-rw-r--r--   1 mjc      mjc            0 Mar 31 18:58 x
lrwxrwxrwx   1 mjc      mjc            1 Mar 31 18:58 y -> x
$ cp -R -P y z
$ ls -l z
lrwxrwxrwx   1 mjc      mjc            1 Mar 31 18:58 z -> x
$ 

或者,默认情况下,普通的旧 tar 将愉快地使用符号链接,即使是 Solaris 附带的古老版本:

tar -cf foo | ( cd bar && tar -xf - )

(其中 foo 是符号链接或包含符号链接的目录)。

 /usr/bin/cp -r | -R [-H | -L | -P] [-fip@] source_dir... target

 ...

 -H    Takes actions based on the type and  contents  of  the
       file  referenced  by  any symbolic link specified as a
       source_file operand.

       If the source_file operand is a symbolic link, then cp
       copies  the  file  referenced by the symbolic link for
       the source_file  operand.  All  other  symbolic  links
       encountered  during  traversal of a file hierarchy are
       preserved.


 -L    Takes actions based on the type and  contents  of  the
       file  referenced  by  any symbolic link specified as a
       source_file operand or any symbolic links  encountered
       during traversal of a file hierarchy.

       Copies files referenced by  symbolic  links.  Symbolic
       links encountered during traversal of a file hierarchy
       are not preserved.


 -P    Takes actions on any  symbolic  link  specified  as  a
       source_file  operand  or any symbolic link encountered
       during traversal of a file hierarchy.

       Copies symbolic links. Symbolic links encountered dur-
       ing traversal of a file hierarchy are preserved.
于 2009-03-31T17:04:36.290 回答
1

您希望cp -P我相信(查看手册页,因为我现在手头没有 solaris 框。)我隐约怀疑这是 System V-ism,但不会发誓。

于 2009-03-31T16:10:36.870 回答
0

cpio 会为您解决问题吗?

于 2009-03-31T16:10:04.643 回答
0

听起来您正在尝试复制单个符号链接。

您可能只想这样做:


link_destination=`/bin/ls -l /opt/standard_perl/link|awk '{print $10}'`
ln -s $link_destination /opt/standard_perl/link_new

如果您尝试复制目录层次结构,通常在没有 GNU 工具(或 rsync)的情况下很难做到这一点。虽然有一些解决方案通常有效,但没有一种解决方案适用于您可能遇到的每种文件名的每个“标准”unix。如果您打算经常这样做,您应该安装 GNU coreutils、find、cpio 和 tar,以及 rsync。

于 2009-05-21T03:11:18.997 回答