第十二天
1 企業常用命令整理幾個,
ls 列出目錄內容
cd 切換目錄
pwd 檢視當前目錄
mkdir 建立目錄
rm 刪除
cp 複製檔案或目錄
mv 移動檔案或目錄
cat 檢視檔案
more 檢視檔案
less 檢視檔案
grep 搜尋過濾
find 條件查詢
ps 檢視系統程序狀態
top 實時檢視系統負載和程序資訊
netstat 檢視網路連線、路由表、網路介面統計等
ping 測試網路連通性
ssh 安全遠端登入伺服器
tar 打包、解壓檔案
vi/vim nano 文字編輯器
crontab 設定計劃任務
不會的 12裡面有影片看下,會了就不看影片
2 cat檢視檔案顯示行號用什麼引數
cat -n 檔名
cat -n 1.txt
3 less 和more有啥區別
more只能向前翻頁檢視檔案內容,不能向後翻頁;而less既可以向前也可以向後翻頁檢視
less支援上下滾動瀏覽,並且支援搜尋關鍵字、跳轉到特定行等功能,操作更為靈活
4 檢視前幾行命令:
head -n 數字 檔名
head -n 10 1.txt
5 檢視後幾行命令:
tail -n 數字 檔名
tail -n 10 1.txt
6 實時檢視日誌:
tail -f 日誌檔名
工作天天用的
7 下面符號什麼意思?
> 重定向輸出,覆蓋
>>追加重定向,不覆蓋,在末尾新增內容
echo {1..100} 作用:在shell中生成一個從1到100的序列
touch {1..10} 作用:建立1到10個空檔案
mkdir {a,b,c} 作用:建立a b c 的三個目錄
8
劍客有哪幾個命令:
敲下
cat >> tets.txt << EOF
ceshi
kaifa
sheji
xiaoshou
EOF
需求1 篩選 ceshi 資訊
grep ceshi test.txt
需求2 篩選ceshi 資訊 上一行也顯示 -B 引數
grep -B1 ceshi test.txt
需求3 篩選 上一行 和下一行 都顯示出來 -C 引數
grep -C1 ceshi test.txt
需求 4 篩選 下一行資料也顯示出來 用 -A 引數
grep -A1 ceshi test.txt
需求 5 統計ceshi 在文字出現幾次
-c
grep -c ceshi test.txt
需求6 把檔案 ceshi 替換ceshi2023
vi test.txt
:%s/ceshi/ceshi2023/g
或者
sed -i ‘s/ceshi/ceshi2023/g' test.txt