我們都知道memory是快速且有限的資源,雖然我們會使用swap作為一種妥協memory不足的方案,但我們都想最大利用memory而非經常性使用swap。
那在linux中,系統該怎麼知道什麼時候需要開始使用swap呢?
How to add text to a file with command
如何產生ssh key
ssh-keygen是一個OpenSSH內建的ssh key產生工具,在各使用系統上都能夠使用。
基本的ssh key產生指令
find . -name "test.file" -exec rm -rf {} \;
find:Linux的查詢命令,使用者查詢指定條件的檔案
.:當前目錄
"test.file"":目標檔案
-exec:選項
rm -rf:強制刪除檔案,包括目錄
{} \; :固定寫法,一對大括號+空格+\
Props 的傳遞
在Vue當中Props的傳遞是家常便飯,例如以下的資料若要傳遞至Child component時:
const age: number = 134;
const year number = 2153;
const today: Date = new Date();
需要在Parent component及Child component中如此地寫道:
// Parent component
...
...
// Child component
{{ age