Linux常用指令2

2022-02-08 17:49:01 字數 1290 閱讀 3475

1.系統常用命令

1)在檔案中查詢內容 grep

>grep  hello passwd            //在passwd檔案中搜尋hello內容,會把hello所在行的內容列印到終端顯示

2)檢視系統中活躍的程序

>ps -a        //列印所用活躍程序到終端

3)殺死指定活躍程序

>kill -9 pid        //殺死指定程序號的程序

4)計算檔案佔據磁碟大小

>du -h 檔案(目錄)

5)檢視並修改系統時間

>date          //檢視系統時間

>date -s "2013-09-13 19:42:30"       //給系統設定時間

6)檢視系統分割槽情況

>df -lh 

2.檔案查詢

find 查詢目錄 選項 選項值 選項 選項值 ...

1)-name選項 根據名字查詢

>find / -name passwd[完整名稱]        //「遞迴遍歷」系統的全部目錄,尋找名稱等於「passwd」的檔案

>find / -name "pas*"[模糊查詢]        //在系統全部目錄,模糊查詢乙個名字是「pas」開始的檔案

>find / -name "*er*"              //檔案名字有出現「er」字樣即可,不要位置

2)限制查詢的目錄層次 -maxdepth    -mindepth

-maxdepth 限制查詢的最深目錄

-mindepth 限制查詢的最淺目錄

>find / -madepth 4 -name passwd

>find / -maxdepth 4 -mindepth 3 -name passwd

3)根據大小為條件進行檔案查詢

-size   +/-數字

+號表示大小大於某個範圍

-號表示大小小於某個範圍

大小單位:

-size   5            //單位是「512位元組」  大小為5*512位元組

-size   5c           //單位是「位元組」  大小為10位元組

-size   5k            //單位是「千位元組」  大小為5*1024位元組

-size   5m(大寫)        //單位是「1024*千位元組」  大小為5兆位元組

>find ./ -size 14c      //在當前目錄查詢大小等於14位元組的檔案

>find / -size +50m      //在系統全部目裡面查詢大小大於50m檔案

linux常用指令整理2

一.目錄命令 1.pwd print working directory 列印當前目錄 2.cd change directory 更換目錄cd 上一級 cd 上乙個目錄 cd 返回使用者的家目錄 3.ls 檢視資訊 引數 a 顯示所有 l 檢視大小屬性許可權資訊 d 目錄像檔案一樣顯示 m 用逗號...

linux便簽(常用指令2)

echo命令 使用echo命令可以列印變數的值 echo path printenv命令 printenv命令可以列印環境變數 printenv more less命令 more less命令可以檢視檔案內容 printenv more 摁空格自動翻頁,自動退出 printenv less 每次回車...

linux常用指令

一 查詢狀態類 1 pwd pwd print work directory 顯示當前工作目錄的絕對路徑 2 ls ls list 顯示當前目錄的檔案 二 目錄類 1 cd cd change directory 切換目錄 波浪符號,代表使用者家目錄 cd 返回上乙個目錄 cd 回到自己的家目錄 c...