たとえば、ファイルが/templates/apple
あり、
- それを2つの異なる場所に置いてから
- オリジナルを削除します。
なので、AND /templates/apple
にコピーしてから
元を削除したいと思います。/templates/used
/templates/inuse
cp
これを行うための最良の方法は次のとおりrm
ですか?それとももっと良い方法がありますか?
私はそれをすべて1行で実行したいので、次のようになると思います。
cp /templates/apple /templates/used | cp /templates/apple /templates/inuse | rm /templates/apple
これは正しい構文ですか?