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.
5352 users tagging and storing useful source code snippets
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
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.