【shell 】檔案操作
一文字里面內容是
192.168.1.2/24
167.178.1.3/24
212.121.1.3/24
192.168.1.2/24
167.178.1.3/24
212.121.1.3/24
123.124.122.121/24
123.124.122.121/24
編寫指令碼將其前面新增入“abcd”並將 /去掉然後以排序彙總
root@client.example.com # sed 's#/# #g' a|sed 's/^/abcd/g'|sort -r|uniq -c
2 abcd212.121.1.3 24
2 abcd192.168.1.2 24
2 abcd167.178.1.3 24
2 abcd123.124.122.121 24
root@client.example.com # sed 's#/# #g' a|sed 's/^/abcd/g'|awk -F "." ' {print $0}'|sort -r|uniq -c
2 abcd212.121.1.3 24
2 abcd192.168.1.2 24
2 abcd167.178.1.3 24
2 abcd123.124.122.121 24
root@client.example.com #
192.168.1.2/24
167.178.1.3/24
212.121.1.3/24
192.168.1.2/24
167.178.1.3/24
212.121.1.3/24
123.124.122.121/24
123.124.122.121/24
編寫指令碼將其前面新增入“abcd”並將 /去掉然後以排序彙總
root@client.example.com # sed 's#/# #g' a|sed 's/^/abcd/g'|sort -r|uniq -c
2 abcd212.121.1.3 24
2 abcd192.168.1.2 24
2 abcd167.178.1.3 24
2 abcd123.124.122.121 24
root@client.example.com # sed 's#/# #g' a|sed 's/^/abcd/g'|awk -F "." ' {print $0}'|sort -r|uniq -c
2 abcd212.121.1.3 24
2 abcd192.168.1.2 24
2 abcd167.178.1.3 24
2 abcd123.124.122.121 24
root@client.example.com #
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-689306/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 在shell提示下操作檔案(轉)
- perl 實現shell 命令的檔案儲存操作
- Shell 檔案包含
- shell配置檔案
- 檔案操作
- 遠端檔案包含shell
- C檔案與檔案的操作
- Go檔案操作Go
- 檔案操作(下)
- lua檔案操作
- JAVA 操作檔案Java
- golang操作檔案Golang
- JavaUtils - 檔案操作Java
- C檔案操作
- perl檔案操作
- unix檔案操作
- java 檔案操作Java
- 2.8檔案操作
- 檔案IO操作
- 05 檔案操作
- Shell指令碼 | 抓取log檔案指令碼
- shell 啟動 java jar 檔案JavaJAR
- Java檔案操作 讀寫操作Java
- shell基礎教程二十四: shell基礎教程: Shell檔案包含
- 實現一鍵式自動化操作(快速建立 Python 與 Shell 檔案)Python
- [ Shell ] 通過 Shell 指令碼匯出 GDSII/OASIS 檔案指令碼
- pandas操作csv檔案
- linux 檔案操作Linux
- Git檔案操作(二)Git
- 28 檔案基本操作
- bcftools操作vcf檔案
- Java 檔案 IO 操作Java
- Python操作檔案Python
- 檔案操作(初階)
- Java操作Excel檔案JavaExcel
- iOS檔案IO操作iOS
- node fs檔案操作
- python檔案操作Python