如果找不到zip/unzip命令,需要先安裝zip/unzip
yum install zip
yum install unzip
//如果有一資料夾test
zip lib.zip -r test//解壓成lib.zip檔案
//如果有一壓縮檔案test.zip
unzip test.zip//解壓到當前目錄
unzip test.zip -d lib//解壓到當前目錄lib資料夾下
rm test.cpp//刪除單一檔案
rm -rf test//刪除test資料夾
$ pm2 list #列出所有程序狀態
$ pm2 stop all #停止所有程序
$ pm2 delete 0
#刪除id為0的程序
$ pm2 delete all #刪除所有程序
linux pm2 常用命令說明
公升級 pm2 npm install pm2 latest g pm2 update 安裝 cnpm install pm2 g 啟動 pm2 start npm start 啟動,守護程式和自動重啟節點應用程式 pm2 start bin www watch 啟動 koa 專案 停止 pm2 s...
Linux常用指令2
1.系統常用命令 1 在檔案中查詢內容 grep grep hello passwd 在passwd檔案中搜尋hello內容,會把hello所在行的內容列印到終端顯示 2 檢視系統中活躍的程序 ps a 列印所用活躍程序到終端 3 殺死指定活躍程序 kill 9 pid 殺死指定程序號的程序 4 計...
08 常用指令 2
在 linux 中的每個使用者必須屬於乙個組,不能獨立於組外。在 linux 中每個檔案有所有者 所在組 其它組的概念。所有者 所在組當某個使用者建立了乙個檔案後,預設這個檔案的所在組就是該使用者所在的組。使用 finch 使用者建立檔案helper,看看當前這個檔案屬於哪個組,然後將這個檔案所在組...