11

OS: デビアン。所有者とグループを変更せずに、ファイルとフォルダーをルートとして、コマンドラインから移動できるようにしたいと考えています。これは可能ですか?

4

2 に答える 2

13

rsync :

 -A, --acls                  preserve ACLs (implies --perms)
 -X, --xattrs                preserve extended attributes
 -o, --owner                 preserve owner (super-user only)
 -g, --group                 preserve group
     --devices               preserve device files (super-user only)
     --specials              preserve special files

男 rsync

于 2013-08-20T20:42:09.440 に答える
9

このmvコマンドは、所有権とタイムスタンプを保持します。cpコマンドには、使用できるさまざまなコマンド ライン オプションがあります。例えば

cp -p file1 file2

man cp利用可能なすべてのオプションが表示されます

于 2013-08-20T20:49:42.490 に答える