以例子簡介 ‘find -ok’ 和 ‘find -okdir’
在這篇文章中,我們會示範使用 `find -ok` 和 `find -okdir` 這兩個指令,這兩個指令跟 `find -exec` 和 `find -execdir` 有一樣的功能,不過,在執行指令前,他們先會跟你確認你是否真的想在該檔案上執行該指令,如果你想要更加小心,這些指令會是你的好幫手。
在這篇文章中,我們會示範使用 `find -ok` 和 `find -okdir` 這兩個指令,這兩個指令跟 `find -exec` 和 `find -execdir` 有一樣的功能,不過,在執行指令前,他們先會跟你確認你是否真的想在該檔案上執行該指令,如果你想要更加小心,這些指令會是你的好幫手。
In this article, we will demonstrate the commands `find -ok` and `find -okdir`. These commands do the same as `find -exec` and `find -execdir`, but they will ask you to confirm before they execute the commands on each file matched. They can be useful if you want to be extra safe.
`find -exec` 是一個很常用的指令,但有些人並不知道 `find -execdir` 這個指令的存在以及它們的分別,在這篇文章中,我們會探討這兩個指令的分別。
`find -exec` is a commonly used command. However, some people might not be awared of the command `find -execdir` and their differences. In this article, we will explain the 2 differences between them.
有時,我們或者需要隱藏用戶輸入,令用戶的需入不會在終端機(terminal)中顯示,特別是當我們的 script 需要取得用戶密碼時。