Linux 基本命令指南

2021-10-25 18:29:28 字數 2297 閱讀 2788

ls	list	 -l -a -h 	

pwd print working directory

cd change directory

mkdir

make directorylsla -p(多層目錄)

touch 建立檔案

cp copy -r(複製資料夾,遞迴複製)

mv move (移動,重新命名)

rm remove -f(強制) -r(資料夾) *

> 覆蓋輸出重定向

>> 附加輸出重定向

cat 檢視/合併

df 檢視磁碟 -h(有單位)

free 記憶體使用 -m(單位)

head 檢視前n行

tail 檢視後n行

less 較少檢視

wc 統計 -lwc

date 2023年 08月 20日 星期四 15:19:17 cst

date +%f 2020-08-20

date

"+%f %t" 2020-08-20 15:22:30

cal -y(年曆)

clear/ctrl+l 清屏

| grep(過濾)

hostname -f

idps -ef 程序列表

top 任務管理區(所佔資源)

du -sh 檢視目錄大小

find -name -type

service 服務名 start/stop/restart

kill pid/all

ifconfig

reboot -w 模擬重啟

shutdown -h now/time (立刻)定時關機

poweroff halt init 0

shutdown -c 取消關機

uptime

uname -a 系統資訊

netstat -tnlp 網路連線狀態

-t tcp -n 協議轉換成埠號 -l 狀態為listen -p 顯示pid和程序名稱

網路設定

service network restart 重啟網路

/etc/init.d/network restart

ln -s 原始檔案路徑 快捷方式路徑 建立快捷方式

終端命令列快捷鍵

快速刪除游標前的內容 ctrl+u

快速刪除游標後的內容 ctrl+k

游標回到首 ctrl+a

游標回到尾 ctrl+e

游標向後移動 ctrl+f

游標向後移動 ctrl+b

搜尋歷史命令 ctrl+r

水平分割 ctrl+shift+o

垂直分割 ctrl+shift+e

關閉終端 ctrl+shift+w

清屏 ctrl+l

放大 ctrl++

縮小 ctrl+-

原始大小 ctrl+0

vim命令

開啟檔案的方式

vim + 路徑

vim +數字 + 路徑 游標移動到指定行

vim +路徑+路徑+路徑+路徑

:open 檔案 切換

:bp(previous) 切換到上乙個檔案

:bn(next) 切換到下乙個檔案

命令模式

游標移動到行首 shift+6

游標移動到行尾 shift+4

可視塊 ctrl+v

格式化** 全選後按=

複製當前行 yy

複製多行 數字yy

剪下/刪除 dd/d

剪下/刪除多行 數字dd

貼上 p

游標移動到首行 gg

游標移動到末行 g

游標移動到指定行 數字g

游標移動 數字+方向鍵

向上翻屏 ctrl+b shift+up

向下翻屏 ctrl+f shift+down

下個單詞 shift+←

上個單詞 shift+→

撤銷 u

取消撤銷 ctrl+r

末行模式

:w 儲存

:q 退出

:x 儲存退出

:x 加密

:!ls 外部命令

:%s/^/要新增的內容 在每行行首新增相同的內容

:%s/$/要新增的內容 在每行行尾新增相同的內容

% 表示整個檔案

g 表示全域性

:syntax on/off **著色

編輯模式

進入方式 i a o s

ctrl + r + = 啟動計算器

git基本命令操作指南

clone到本地git clone address address為需要clone的位址git clone git status命令可以檢視檔案狀態 可不執行,只是用於檢視檔案狀態 git status git add 提交所有變化 a命令區分大小寫 git add git commit a m 內...

linux基本命令

linux常用命令 基礎 eg man ls 就可以檢視ls相關的用法 注 按q鍵或者ctrl c退出,在linux下可以使用ctrl c終止當前程式執行。2.ls 檢視目錄或者檔案的屬 列舉出任一目錄下面的檔案 eg ls usr man ls l a.d表示目錄 directory 如果是乙個 ...

《linux基本命令》

博主部落格 斷橋殘雪 uname 顯示版本資訊 同win2k的 ver dir 顯示當前目錄檔案,ls al 顯示包括隱藏檔案 同win2k的 dir pwd 查詢當前所在的目錄位置 cd cd 回到上一層目錄,注意cd 與.之間有空格。cd 返回到根目錄。cat 檔名 檢視檔案內容 cat abc...