inkview, install-tl, interdiff, ionic, ioping: add Korean translation (#22170)

This commit is contained in:
HoJeong Im
2026-04-27 23:40:00 +09:00
committed by GitHub
parent 4453802264
commit 879bae3eca
5 changed files with 101 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# inkview
> Inkscape용 그래픽 SVG 미리보기 도구.
> 슬라이드 쇼 뷰어로도 사용할 수 있음.
> 더 많은 정보: <https://wiki.inkscape.org/wiki/index.php/Inkview>.
- SVG 파일 미리보기:
`inkview {{경로/대상/파일.svg}}`
- 여러 SVG 파일 미리보기 (`<ArrowKeys>`로 이동):
`inkview {{경로/대상/파일1.svg 경로/대상/파일2.svg ...}}`
+28
View File
@@ -0,0 +1,28 @@
# install-tl
> TeX Live 크로스 플랫폼 설치 도구.
> 더 많은 정보: <https://tug.org/texlive/>.
- 텍스트 기반 설치 프로그램 실행 (Unix 시스템 기본):
`install-tl -no-gui`
- GUI 설치 프로그램 실행 (macOS/Windows 기본, Tcl/Tk 필요):
`install-tl -gui`
- 특정 프로파일 파일에 정의된 설정으로 TeX Live 설치:
`install-tl -profile {{경로/대상/texlive.profile}}`
- 특정 프로파일 파일의 설정을 불러와 설치 시작:
`install-tl -init-from-file {{경로/대상/texlive.profile}}`
- USB 등 휴대용 장치에 설치:
`install-tl -portable`
- 도움말 표시:
`install-tl -help`
+12
View File
@@ -0,0 +1,12 @@
# interdiff
> 두 개의 diff 파일 간 차이를 비교하는 도구.
> 더 많은 정보: <https://sourceforge.net/directory/software-development/>.
- diff 파일 비교:
`interdiff {{오래된_파일}} {{새로운_파일}}`
- 공백을 무시하고 diff 파일 비교:
`interdiff {{[-w|--ignore-all-space]}} {{오래된_파일}} {{새로운_파일}}`
+28
View File
@@ -0,0 +1,28 @@
# ionic
> 하이브리드 모바일 앱을 개발하기 위한 프레임워크.
> 더 많은 정보: <https://ionicframework.com/docs/cli>.
- 새로운 프로젝트 생성:
`ionic start`
- 애플리케이션 개발/테스트를 위한 로컬 개발 서버 실행:
`ionic serve`
- 새로운 애플리케이션 컴포넌트, 디렉티브, 페이지, 파이프, 프로바이더, 탭 생성:
`ionic g {{페이지}}`
- Android/iOS 장치에서 애플리케이션 실행:
`ionic cordova run {{android|ios}} --device`
- Ionic 애플리케이션 상태 점검:
`ionic doctor {{check}}`
- Ionic, Cordova, 환경 등의 버전 정보 출력:
`ionic info`
+20
View File
@@ -0,0 +1,20 @@
# ioping
> 실시간으로 디스크 I/O 지연시간을 모니터링하는 도구.
> 더 많은 정보: <https://github.com/koct9i/ioping>.
- 기본 설정으로 현재 디렉터리의 디스크 I/O 지연 시간 확인:
`ioping .`
- `/tmp`에서 1MB 크기로 10회 요청하여 지연 시간 측정:
`ioping {{[-c|-count]}} 10 {{[-s|-size]}} 1M /tmp`
- `/dev/sdX`에서 디스크 탐색 속도 측정:
`ioping {{[-R|-rapid]}} {{/dev/sdX}}`
- `/dev/sdX`에서 디스크 순차 읽기 속도 측정:
`ioping {{[-RL|-rapid -linear]}} {{/dev/sdX}}`