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