我有一個日誌文件包含所有信息。如何使用bash中的parametres從文件中提取行
2017-09-21 02:01:11,130 [http-nio-8080-exec-5] INFO - Inbound Message
...
...
2017-09-21 09:01:11,130 [http-nio-8080-exec-5] INFO - Inbound Message
----------------------------
ID: 6044
Address: http://localhost/serveur/Service?wsdl
Encoding: UTF-8
Http-Method: POST
...
2017-09-21 12:01:11,130 [http-nio-8080-exec-5] INFO - Inbound Message
...
我想只提取2個日期之間的信息。對於爲例,如果我想2017年9月21日09 ..和2017年9月21日12之間的信息我想有這樣的事情:
./script.sh 2017-09-21 09 2017-09-21 12
# $1 = 2017-09-21
# $2 = 09
# $3 = 2017-09-21
# $4 = 12
# $1 & 2 are date and hour to begin extract
# $3 & 4 are date and hour to finish extract
我的劇本是這樣的。我沒有shell編程知識,但我試圖做到這一點。不幸的是它不起作用
#!/bin/bash
beginLine = "$1 $2"
finishLine = "$3 $4"
while read fileLog.log
do
if($fileLog.log grep beginLine)
echo $fileLog.log >> extractedlog.log
fi
if($fileLog.log grep finishLine)
< extractedLog.log;
fi
done
exit 0;
有誰能告訴我問題在哪裏?
這不是'bash'語法 – hek2mgl