「Linux」cpコマンドでファイルの属性を保持しコピーする方法

2021年3月18日

書式
cp -p ファイル名 ディレクトリ先
pオプション:属性が維持
fオプション:強制的に上書きする

使用例1
# ls -l 200.txt
-rw-r–r– 1 root root 12 3月 18 11:16 200.txt
# pwd
# cp -p 200.txt /test/data3
# ls -l /test/data3
合計 4
-rw-r–r– 1 root root 12 3月 18 11:16 200.txt

使用例2
# cp -i 200.txt /test/data3
cp: '/test/data3/200.txt’ を上書きしますか?y
# ls -l /test/data3
合計 4
-rw-r–r– 1 root root 12 3月 18 17:58 200.txt

Linux

Posted by arkgame