cp指令為何無法強制覆蓋?一直出現提示

cp -f 為何仍然會跳出訊息詢問是否要覆蓋 overwrite?

那到底為什麼 cp 會一直出現要不要覆寫的確認訊息呢?
明明查了help 是-f 沒錯,
-f, --force if an existing destination file cannot be opened, remove it and try again。
可是即使加上了這個參數仍舊無法直接覆蓋 @@
主要是因為linux cp 預設會被設定成別名:alias cp='cp -i'

最簡單解決方式就是直接利用
/bin/cp -f x
就可以解決囉!