Home | Mirror | Search

3. cat - concatenate files and print on the standard output

-b	不對空白行編號。
-e	使用 $ 字元顯示行尾。
-n	從 1 開始對所有輸出行編號。
-q	使用靜默操作(禁止錯誤消息)。
-r	將所有多個空行替換為單行(“壓縮”空白)。
-t	將製表符顯示為 ^I。
-u	不對輸出進行緩衝。
-v	可視地顯示非打印控制字元。
		

3.1. -s, --squeeze-blank suppress repeated empty output lines

-S 將多個空白行壓縮到單行中(與 -r 相同)

			
$ cat >> /tmp/test <<EOF
Line1

Line2


Line3




Line4


Line5

EOF

$ cat -s /tmp/test
Line1

Line2

Line3

Line4

Line5

			
			
comments powered by Disqus