我試圖從文件中提取地址。拆分unix輸出
grep keyword /path/to/file
是我如何找到我想要的代碼行。輸出是一樣的東西
var=http://address
是有辦法的=
即http://address
後直接我只能得到部分,考慮到我greping爲關鍵字無論是在var
和http://address
部分
我試圖從文件中提取地址。拆分unix輸出
grep keyword /path/to/file
是我如何找到我想要的代碼行。輸出是一樣的東西
var=http://address
是有辦法的=
即http://address
後直接我只能得到部分,考慮到我greping爲關鍵字無論是在var
和http://address
部分
grep keyword /path/to/file | cut -d= -f2-
只是管cut
:
grep keyword /path/to/file | cut -d '=' -f 2
可避免不必要的管道:
awk -F= '/keyword/{print $2}' /path/to/file
http://partmaps.org/era/unix/award.html –