Journey of a noob

Learn From Noobs

以例子簡介 ‘find -ok’ 和 ‘find -okdir’

Posted at # Unix/Linux

在這篇文章中,我們會示範使用 `find -ok` 和 `find -okdir` 這兩個指令,這兩個指令跟 `find -exec` 和 `find -execdir` 有一樣的功能,不過,在執行指令前,他們先會跟你確認你是否真的想在該檔案上執行該指令,如果你想要更加小心,這些指令會是你的好幫手。

‘find -ok’ and ‘find -okdir’ by example

Posted at # Unix/Linux

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.

Bash: 隱藏用戶輸入/密碼

Posted at # Shell

有時,我們或者需要隱藏用戶輸入,令用戶的需入不會在終端機(terminal)中顯示,特別是當我們的 script 需要取得用戶密碼時。