Add summary of process state meanings
[khatus.git] / bin / khatus_parse_fan_file
1 #! /usr/bin/awk -f
2
3 BEGIN {
4 OFS = msg_fs ? msg_fs : "|"
5 Kfs = key_fs ? key_fs : ":"
6 }
7
8 {
9 key = $1
10 sub(":$", "", key)
11 val = $2
12 print(key, val)
13 }
This page took 0.050106 seconds and 4 git commands to generate.