cpコマンドが上書きのプロンプトを表示しないようにするにはどうすればよいですか。ターミナルに戻らなくても、すべてのファイルを上書きしたいです。これらは大きなファイルであるため、完了するまでに時間がかかります。
-fオプションを使用してみました。上書きするかどうかを尋ねます。
-f, --force
if an existing destination file cannot be opened, remove it and
try again (redundant if the -n option is used)
cp -f /media/somedir/somefiles* .
cp: overwrite `./somefilesxxx'? y
whereis cp
コマンドがどこにあるかが表示されます。したがって、エイリアスの代わりに実際のコマンドを呼び出すことができます。