ubuntu 中的 cp -p 命令

ubuntu 中的 cp -p 命令
set series = usno
if ( ! -e ut1.${series}  ) \cp -p ~/gg/tables/ut1.${series}  .

我正在尝试理解一个脚本。我需要知道这个脚本中哪个 cp -p 命令有效?

答案1

来自cp手册页:

--preserve[=ATTR_LIST]
       preserve the specified attributes (default: mode,ownership,time‐
       stamps), if  possible  additional  attributes:  context,  links,
       xattr, all

-p     same as --preserve=mode,ownership,timestamps

换句话说,它将保留比默认情况下更多的元数据。

相关内容