Never been to DZone Snippets before?

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 (See related posts)

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

You need to create an account or log in to post comments to this site.


Click here to browse all 7718 code snippets

Related Posts