diff --git a/pages.ko/common/inkview.md b/pages.ko/common/inkview.md new file mode 100644 index 0000000000..09a8dee6ff --- /dev/null +++ b/pages.ko/common/inkview.md @@ -0,0 +1,13 @@ +# inkview + +> Inkscape용 그래픽 SVG 미리보기 도구. +> 슬라이드 쇼 뷰어로도 사용할 수 있음. +> 더 많은 정보: . + +- SVG 파일 미리보기: + +`inkview {{경로/대상/파일.svg}}` + +- 여러 SVG 파일 미리보기 (``로 이동): + +`inkview {{경로/대상/파일1.svg 경로/대상/파일2.svg ...}}` diff --git a/pages.ko/common/install-tl.md b/pages.ko/common/install-tl.md new file mode 100644 index 0000000000..40da52ca4f --- /dev/null +++ b/pages.ko/common/install-tl.md @@ -0,0 +1,28 @@ +# install-tl + +> TeX Live 크로스 플랫폼 설치 도구. +> 더 많은 정보: . + +- 텍스트 기반 설치 프로그램 실행 (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` diff --git a/pages.ko/common/interdiff.md b/pages.ko/common/interdiff.md new file mode 100644 index 0000000000..a891485f08 --- /dev/null +++ b/pages.ko/common/interdiff.md @@ -0,0 +1,12 @@ +# interdiff + +> 두 개의 diff 파일 간 차이를 비교하는 도구. +> 더 많은 정보: . + +- diff 파일 비교: + +`interdiff {{오래된_파일}} {{새로운_파일}}` + +- 공백을 무시하고 diff 파일 비교: + +`interdiff {{[-w|--ignore-all-space]}} {{오래된_파일}} {{새로운_파일}}` diff --git a/pages.ko/common/ionic.md b/pages.ko/common/ionic.md new file mode 100644 index 0000000000..d1a0dc8aea --- /dev/null +++ b/pages.ko/common/ionic.md @@ -0,0 +1,28 @@ +# ionic + +> 하이브리드 모바일 앱을 개발하기 위한 프레임워크. +> 더 많은 정보: . + +- 새로운 프로젝트 생성: + +`ionic start` + +- 애플리케이션 개발/테스트를 위한 로컬 개발 서버 실행: + +`ionic serve` + +- 새로운 애플리케이션 컴포넌트, 디렉티브, 페이지, 파이프, 프로바이더, 탭 생성: + +`ionic g {{페이지}}` + +- Android/iOS 장치에서 애플리케이션 실행: + +`ionic cordova run {{android|ios}} --device` + +- Ionic 애플리케이션 상태 점검: + +`ionic doctor {{check}}` + +- Ionic, Cordova, 환경 등의 버전 정보 출력: + +`ionic info` diff --git a/pages.ko/common/ioping.md b/pages.ko/common/ioping.md new file mode 100644 index 0000000000..d08323e0b0 --- /dev/null +++ b/pages.ko/common/ioping.md @@ -0,0 +1,20 @@ +# ioping + +> 실시간으로 디스크 I/O 지연시간을 모니터링하는 도구. +> 더 많은 정보: . + +- 기본 설정으로 현재 디렉터리의 디스크 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}}`