從配置檔案中提取IP
--提取配置檔案111.txt中的ip:
[etl@cppimii-etl01 fjz_script]$ cat 111.txt
db = oracle
ip = 10.3.7.111
[etl@cppimii-etl01 fjz_script]$ sed -n '/ip/'p 111.txt | awk -F= '{print $2}'
10.3.7.111
[etl@cppimii-etl01 fjz_script]$ cat 111.txt
db = oracle
ip = 10.3.7.111
date=2012/05/12=end
[etl@cppimii-etl01 fjz_script]$ sed -n '/date/'p 111.txt | awk -F= '{print $3}'
end
[etl@cppimii-etl01 fjz_script]$ cat 111.txt
db = oracle
ip = 10.3.7.111
date=2012/05/12=
[etl@cppimii-etl01 fjz_script]$ sed -n '/\(=\)[0-9]\{4\}\/[0-9]\{2\}\/[0-9]\{2\}\1/'p 111.txt
date=2012/05/12=
[etl@cppimii-etl01 fjz_script]$ cat 111.txt
db = oracle
ip = 10.3.7.111
[etl@cppimii-etl01 fjz_script]$ sed -n '/ip/'p 111.txt | awk -F= '{print $2}'
10.3.7.111
[etl@cppimii-etl01 fjz_script]$ cat 111.txt
db = oracle
ip = 10.3.7.111
date=2012/05/12=end
[etl@cppimii-etl01 fjz_script]$ sed -n '/date/'p 111.txt | awk -F= '{print $3}'
end
[etl@cppimii-etl01 fjz_script]$ cat 111.txt
db = oracle
ip = 10.3.7.111
date=2012/05/12=
[etl@cppimii-etl01 fjz_script]$ sed -n '/\(=\)[0-9]\{4\}\/[0-9]\{2\}\/[0-9]\{2\}\1/'p 111.txt
date=2012/05/12=
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22661144/viewspace-1412901/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux 中sed命令實現從gff檔案中僅僅提取基因名稱Linux
- !!!提取檔案記錄!!!
- 如何從 dump 檔案中提取出 C# 原始碼?C#原始碼
- 如何用Python從PDF檔案中提取文字詞彙Python
- TCP/IP協議及配置、檔案系統TCP協議
- 製作ISO檔案 與 提取ISO檔案
- 天龍八部架設IP配置檔案
- Laravel 中的配置檔案Laravel
- 從 ISO 映象中提取和複製檔案的絕招(Linux)Linux
- File Juicer for Mac(檔案提取工具)UIMac
- 去掉字串中重複部分 提取檔案字尾名字串
- Deployer recipe中Laravel配置檔案Laravel
- java中讀取配置檔案Java
- Golang專案中讀取配置檔案Golang
- solaris系統中有關 TCP/IP配置的檔案與命令TCP
- php檔案操作之提取檔案/目錄的名稱PHP
- SpringBoot專案中獲取配置檔案的配置資訊Spring Boot
- vscode外掛:檔案樹提取器VSCode
- Linux中實現根據scaffold名稱從fasta檔案中提取資料(scaffold名稱長)LinuxAST
- Android從零擼美團(一) – 統一管理 Gradle 依賴 提取到單獨檔案中AndroidGradle
- Android從零擼美團(一) - 統一管理 Gradle 依賴 提取到單獨檔案中AndroidGradle
- Spring - 配置檔案中的特殊字元Spring字元
- 提取檔名字到excel表中Excel
- Git配置配置檔案Git
- 使用os.walk提取壓縮檔案並避免遞迴提取遞迴
- 如何使用htmlq提取html檔案內容HTML
- 流量中提取檔案的若干種方法
- SpringBoot專案配置檔案中密碼的加密Spring Boot密碼加密
- ar——建立或修改備存檔案,或是從備存檔案中抽取檔案
- 如何在python中讀取配置檔案Python
- 想要提取PDF檔案中的美麗圖片,該怎麼辦?
- 深入解析 Spring 配置檔案:從基礎到高階Spring
- ?從零開始學習webpack系列二(配置檔案)Web
- 基於配置檔案的redis的主從複製Redis
- 關於證書,如何使用 go 語言從 pfx 檔案中提取出私鑰Go
- docker 配置檔案Docker
- gitignore 檔案配置Git
- Nginx 配置檔案Nginx
- Maven 配置檔案Maven