infection, influx, info, initdb, inkmake, inkscape: add Korean translation (#14692)

* infection, influx, info, initdb, inkmake, inkscape: add Korean translation

* Update pages.ko/common/inkscape.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
HoJeong Im
2024-11-08 15:54:24 +09:00
committed by GitHub
parent 781a19fc2e
commit 8d1a01fd45
6 changed files with 145 additions and 0 deletions

28
pages.ko/common/influx.md Normal file
View File

@@ -0,0 +1,28 @@
# influx
> InfluxDB 커멘드 라인 클라이언트.
> 더 많은 정보: <https://docs.influxdata.com/influxdb/v1.7/tools/shell/>.
- 자격증명 없이 localhost에서 실행되는 InfluxDB에 연결:
`influx`
- 특정 사용자 이름으로 연결 (비밀번호를 묻는 메시지가 표시됨):
`influx -username {{사용자명}} -password ""`
- 특정 호스트에 연결:
`influx -host {{호스트명}}`
- 특정 데이터베이스 사용:
`influx -database {{데이터베이스_이름}}`
- 주어진 명령을 실행:
`influx -execute "{{influxql_명령}}"`
- 특정 형식으로 출력을 반환:
`influx -execute "{{influxql_명령}}" -format {{json|csv|column}}`