從配置檔案中提取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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 怎麼從系統光碟中提取檔案!
- 利用perl提取web配置檔案中的域名對應的路徑Web
- Linux 中sed命令實現從gff檔案中僅僅提取基因名稱Linux
- Oracle從dump檔案中提取DDL語句方法Oracle
- Sql server:從XML檔案中讀取配置資訊SQLServerXML
- 如何從 dump 檔案中提取出 C# 原始碼?C#原始碼
- 如何用Python從PDF檔案中提取文字詞彙Python
- AMDU 從頭部損壞的磁碟中提取檔案
- 天龍八部架設IP配置檔案
- TCP/IP協議及配置、檔案系統TCP協議
- Oracle 從Dump 檔案裡提取 DDL 語句 方法說明Oracle
- 製作ISO檔案 與 提取ISO檔案
- CAB歸檔檔案提取工具cabextract
- Laravel 中的配置檔案Laravel
- 去掉字串中重複部分 提取檔案字尾名字串
- Python批量提取Word檔案題庫中的答案Python
- File Juicer for Mac(檔案提取工具)UIMac
- nmap掃描檔案提取工具
- 提取rpm檔案內容
- Deployer recipe中Laravel配置檔案Laravel
- java中讀取配置檔案Java
- Golang專案中讀取配置檔案Golang
- 從 ISO 映象中提取和複製檔案的絕招(Linux)Linux
- 一個從EXE、DLL檔案中提取、存取圖示完整程式 (轉)
- 提取檔名字到excel表中Excel
- 控制檔案恢復—從trace檔案中恢復
- Redhat中透過命令工具和配置檔案設定TCP/IP引數的方法RedhatTCP
- php檔案操作之提取檔案/目錄的名稱PHP
- java中讀取.properties配置檔案Java
- Android從零擼美團(一) - 統一管理 Gradle 依賴 提取到單獨檔案中AndroidGradle
- Android從零擼美團(一) – 統一管理 Gradle 依賴 提取到單獨檔案中AndroidGradle
- vb中從域名得到IP及從IP得到域名 (轉)
- solaris系統中有關 TCP/IP配置的檔案與命令TCP
- 使用os.walk提取壓縮檔案並避免遞迴提取遞迴
- SpringBoot專案中獲取配置檔案的配置資訊Spring Boot
- 從ASM磁碟中複製檔案到本地檔案系統ASM
- Linux中如何配置IPLinux
- 想要提取PDF檔案中的美麗圖片,該怎麼辦?