DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Read Asterisk Queue_log With Dates Instead Of Timestamps
Sometimes you need to read the queue_log file from asterisk. If you can't parse UNIX timestamps in your head, this awk command line snippet will help:
awk 'BEGIN { FS = "|"; OFS="|" } { $1 = strftime("%F %T",$1); print $0 }' queue_log





