Pretty print.

This commit is contained in:
Marcus Brinkmann 2003-04-24 15:15:29 +00:00
parent f58531a211
commit 5b88552e74

View File

@ -39,10 +39,10 @@ static struct status_table_s status_table[] =
EOF
awk '
/GPGME_STATUS_ENTER/ { okay=1 }
!okay {next}
/}/ { exit 0 }
/GPGME_STATUS_[A-Za-z_]*/ { sub (/,/, "", $1); printf " { \"%s\", %s },\n", substr($1,14), $1 }
/GPGME_STATUS_ENTER/ { okay = 1 }
!okay { next }
/}/ { exit 0 }
/GPGME_STATUS_[A-Za-z_]*/ { sub (/,/, "", $1); printf " { \"%s\", %s },\n", substr($1,14), $1 }
' | sort
cat <<EOF