1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 02:02:07 +02:00
tldr/pages.ko/common/xml-escape.md
2024-11-01 23:24:37 +05:30

16 lines
373 B
Markdown

# xml escape
> 특수 XML 문자를 이스케이프합니다. 예: `<a1>` → `&lt;a1&gt;`.
> 더 많은 정보: <https://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- 문자열에서 특수 XML 문자 이스케이프:
`xml escape "{{<a1>}}"`
- `stdin`에서 특수 XML 문자 이스케이프:
`echo "{{<a1>}}" | xml escape`
- 도움말 표시:
`xml escape --help`