[size=large][/size]head 預設顯示10行 head file1 head -n 15 file1 顯示15行 同--lines 15,head -12 file1
tail 與head 剛相反 tail -f /var/log/messages 持續顯示log的動態改變 直到用ctrl+c結束
wc file -l 行數統計 -w單詞 -c字元 cat /etc/passwd | wc -l
uniq file 移除相鄰的相同行 sort file | uniq 等同於sort -u file
uniq -c file 顯示相同的行數
paste 將不同檔案貼一起 paste file2 file3 file4 橫著貼 隔著tab
cat file2 file3 file4 > merge2 豎著貼
段落符號unix 中是$ dos中是 \r a=all顯示全部,包括段落符號
cat -a file | tr '$' '\r' > file.txt 格式轉換= unix2dos file
tail abc abc顯示兩個檔案 diff abc abc a在第二個檔案
作用同sdiff abc abc
字典檔 less /usr/share/dict/words aspell check file 檢查拼寫
look exer 查詢拼寫
fmt -u -w50 file 重新格式段落 -u空白規格 -w行寬度 format使格式化;安排……的格局;設計……的版面
pr 按印表機規格編排 pr -h"this is header" -l20 -5 /usr/share/dict/words | more | lpr
-l20每頁總共20 行 -5分成欄 lpr 列印
expand file 把tab轉換成空白鍵
關於JAVA處理字串
如果有一段英文,如 i am a student.my name is aaa.i like to swim,play basketball and play football.這裡面有逗號 有點號,或者還有其他符號 但如果遇到單引號,如my father s 中的father s要單獨作為乙個單詞...
關於字串的處理總結
常見的字串型別 char wchar t cstring string 關於字串處理的函式,具體例子 strcat str1,str2 tcslen str 獲得字串長度 tcsrchr str,l 反向搜尋獲得最後乙個tchar的位置 stprintf tchar buffer,const tch...
字串處理 字串反轉
請原諒博主今天很閒,於是乎博主又開始更新微博了。這次要更新的問題是 編寫乙個函式,反轉乙個單詞的順序。例如 do or do not,there is no try.就要反轉成 try.no is there not,do or do 大家要認真看看這道題,這道題和大家想象的貌似有點不同。首先字串反...