1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

doxygen, drill: add Korean translation (#14159)

This commit is contained in:
HoJeong Im 2024-10-16 16:21:52 +09:00 committed by GitHub
parent 9f86b518f7
commit a539317252
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# doxygen
> 다양한 프로그래밍 언어의 문서화 시스템.
> 더 많은 정보: <https://www.doxygen.nl>.
- 기본 템플릿 구성 파일 `Doxyfile`을 생성:
`doxygen -g`
- 템플릿 구성 파일 생성:
`doxygen -g {{경로/대상/구성_파일}}`
- 기존 구성 파일을 사용하여 문서 생성:
`doxygen {{경로/대상/구성_파일}}`

32
pages.ko/common/drill.md Normal file
View file

@ -0,0 +1,32 @@
# drill
> 다양한 DNS 쿼리를 수행.
> 더 많은 정보: <https://manned.org/drill>.
- 호스트 이름 (A 레코드)과 연결된 IP를 조회:
`drill {{example.com}}`
- 특정 도메인 이름 (MX 레코드)과 연결된 메일 서버를 조회:
`drill mx {{example.com}}`
- 특정 도메인 이름에 대한 모든 유형의 레코드를 가져옴:
`drill any {{example.com}}`
- 쿼리할 대체 DNS 서버를 지정:
`drill {{example.com}} @{{8.8.8.8}}`
- IP 주소 (PTR 레코드)에 대해 역방향 DNS 조회를 수행:
`drill -x {{8.8.8.8}}`
- 루트 서버부터 도메인 이름까지 DNSSEC 추적을 수행:
`drill -TD {{example.com}}`
- 도메인 이름에 대한 DNSKEY 레코드 표시:
`drill -s dnskey {{example.com}}`