Bash 从texttable中提取URL(多行)

Bash 从texttable中提取URL(多行),bash,shell,Bash,Shell,我的消息来源: +-----------+-------+----------------------+----------------------------------------------------------------------------------+ | positives | total | scan_date | url

我的消息来源:

+-----------+-------+----------------------+----------------------------------------------------------------------------------+
| positives | total |      scan_date       |                                       url                                        |
+===========+=======+======================+==================================================================================+
|     4     |  65   | 2015-09-21 23:29:33  | http://thebackpack.fr/wp-content/themes/salient/wpbakery/js_composer/assets/lib/ |
|           |       |                      | prettyphoto/images/prettyPhoto/light_rounded/66836487162.txt                     |
+-----------+-------+----------------------+----------------------------------------------------------------------------------+
|     1     |  64   | 2015-09-17 19:28:50  | http://thebackpack.fr/                                                           |
+-----------+-------+----------------------+----------------------------------------------------------------------------------+
|     1     |  64   | 2015-09-17 08:44:16  | http://thebackpack.fr/wp-content/themes/salient/wpbakery/js_composer/assets/lib/ |
|           |       |                      | prettyphoto/images/prettyPhoto/light_rounded/                                    |
+-----------+-------+----------------------+----------------------------------------------------------------------------------+
我想提取完整的URL(一行中的完整URL):

多行URL是我的问题。例如,我尝试了:
awk'{print$9}'


提前感谢您的帮助

您可以使用此awk命令:

awk -F '[[:blank:]]*\\|[[:blank:]]*' 'NR<3 || NF<5{next}
   $2{if (url) print url; url=$5; next}
   {url=url $5}
   END{print url}' file

调整用于生成此输出的sql语句更有意义
awk -F '[[:blank:]]*\\|[[:blank:]]*' 'NR<3 || NF<5{next}
   $2{if (url) print url; url=$5; next}
   {url=url $5}
   END{print url}' file
http://thebackpack.fr/wp-content/themes/salient/wpbakery/js_composer/assets/lib/prettyphoto/images/prettyPhoto/light_rounded/66836487162.txt
http://thebackpack.fr/
http://thebackpack.fr/wp-content/themes/salient/wpbakery/js_composer/assets/lib/prettyphoto/images/prettyPhoto/light_rounded/