mirror of
https://github.com/msmhq/msm.git
synced 2024-08-30 18:12:35 +00:00
Fix escaping fail on awk command in log_line_get_time()
This commit is contained in:
parent
c3968de617
commit
6386814d46
2
init/msm
2
init/msm
@ -292,7 +292,7 @@ now() {
|
||||
# $1: A server log line
|
||||
# returns: Time in seconds since 1970-01-01 00:00:00 UTC
|
||||
log_line_get_time() {
|
||||
time_string="$(echo "$1" | awk 'BEGIN{FS="[ \][/:]+"}; {print $1 " " $2 ":" $3 ":" $4}')"
|
||||
time_string="$(echo "$1" | awk -F'[] [/:]+' '{print $1 " " $2 ":" $3 ":" $4}')"
|
||||
date -d "$time_string" "+%s" 2> /dev/null
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user