1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:42:19 +02:00
tldr/pages/common/zek.md
Muhammad Falak R Wani 4a29b53671
zek: add page (#7888)
2022-03-17 08:43:00 -03:00

504 B

zek

Generate a Go struct from XML. More information: https://github.com/miku/zek.

  • Generate a Go struct from a given XML from stdin and display output on stdout:

cat {{path/to/input.xml}} | zek

  • Generate a Go struct from a given XML from stdin and send output to a file:

curl -s {{https://url/to/xml}} | zek -o {{path/to/output.go}}

  • Generate an example Go program from a given XML from stdin and send output to a file:

cat {{path/to/input.xml}} | zek -p -o {{path/to/output.go}}