Linux 文字相關命令

2021-08-20 23:06:52 字數 1118 閱讀 5989

文字檢視:

1、cat:連線檔案並顯示         --tac:反向檢視檔案

-n 顯示行號

-e 顯示行結束符($)

2、more,less分屏顯示

more:向後翻

less :和man一樣

3、head,tail

head:檢視前n(10)行

tail:檢視後n行

tail -f:檢視檔案尾部,不退出,等待顯示後續追加至此檔案的新內容

文字處理:

1、cut:剪下

-d:指定字段分隔符

-f:指定檔案      

-f1-f1,3

-f1-3              

例子:[root@m01 /]# cut -d : -f1,3 /etc/passwd

root:0

bin:1

daemon:2

adm:3

lp:4

sync:5

shutdown:6

halt:7

mail:8

operator:11

games:12

ftp:14

nobody:99

systemd-network:192

dbus:81

polkitd:999

postfix:89

sshd:74

nginx:998

2、sort:文字排序(預設按照acsii碼)

-n:按數值大小排序

-r:降序排序

-t:指定分隔符

-k:指定第幾個字段

例子:[root@m01 ~]# sort -t: -k3 -n /etc/passwd

3、uniq:報告或忽略重複的行

用法:uniq 【option】【filename】

-d 顯示重複的行

-c   顯示某一行重複的次數

4、wc:(world count),tr:逐個字元替換或刪除

例子:   tr -d '3'  < ~/sort.txt          --刪除檔案中含有『3』的字元  

文字相關的屬性

一 text decoration屬性 文字樣式 下劃線 刪除線 上刪除線 1.下劃線 underline 我是段落 2.刪除線 line through 我是段落 3.上刪除線 overline 我是段落 4.無 none 我是段落1 我是段落1 效果圖 二 text align屬性 文字水平對齊...

HTML CSS 文字相關屬性

重點內容規定文字樣式的屬性 格式 font style italic 取值 normal 正常的 預設值 italic 傾斜的 快捷鍵 軟體 dw 輸入fs,自動生成 font style italic 輸入fsn,自動生成 font style normal 規定文字粗細的屬性 格式 font w...

HTML CSS 文字相關屬性

文字裝飾的屬性 格式 text decoration underline 取值 underline 下劃線 line through 刪除線 overline 上劃線 none 什麼都沒有,常見用途 用於去掉因超連結產生的下劃線 我是超連結,我會產生下劃線 快捷鍵 輸入td,自動生成text dec...