diff --git a/pages.ko/common/cmake.md b/pages.ko/common/cmake.md new file mode 100644 index 0000000000..789e0327b3 --- /dev/null +++ b/pages.ko/common/cmake.md @@ -0,0 +1,16 @@ +# cmake + +> 빌드 시스템을 생성하는 크로스 플랫폼으로 선택한 시스템에 따라 Makefiles, Visual Studio 프로젝트 또는 기타를 생성합니다. +> 더 많은 정보: . + +- 작성 파일을 생성하고 이를 사용하여 원본과 동일한 디렉토리에서 프로젝트를 컴파일합니다: + +`cmake && make` + +- Makefile을 생성하고 이를 사용하여 별도의 "빌드" 디렉토리(소스 외 빌드)에 프로젝트를 컴파일합니다: + +`cmake -H. -B{{빌드}} && make -C {{빌드}}` + +- 대화형 모드로 cmake를 실행 (기본값을 사용하는 대신 각 변수에 대해 요청합니다): + +`cmake -i` diff --git a/pages.ko/common/cmark.md b/pages.ko/common/cmark.md new file mode 100644 index 0000000000..465c32e54e --- /dev/null +++ b/pages.ko/common/cmark.md @@ -0,0 +1,20 @@ +# cmark + +> Commonmark Markdown 텍스트를 다른 텍스트 형식으로 변환합니다. +> 더 많은 정보: . + +- Commonmark Markdown 파일을 HTML 파일로 렌더링합니다: + +`cmark --to html {{파일명.md}}` + +- 데이터를 표준 입력에서 라텍스로 변환: + +`cmark --to latex` + +- 직선 따옴표를 스마트 따옴표로 변환: + +`cmark --smart --to html {{파일명.md}}` + +- utf8 문자들을 검증: + +`cmark --validate-utf8 {{파일명.md}}` \ No newline at end of file diff --git a/pages.ko/common/cmp.md b/pages.ko/common/cmp.md new file mode 100644 index 0000000000..33d6fe9027 --- /dev/null +++ b/pages.ko/common/cmp.md @@ -0,0 +1,11 @@ +# cmp + +> 두 개의 파일 비교. + +- 파일 간의 첫 번째 바이트 번호와 선 번호의 차이를 찾습니다: + +`cmp {{파일1}} {{파일2}}` + +- 모든 바이트 수와 다른 바이트의 차이 찾기: + +`cmp -l {{파일1}} {{파일2}}` \ No newline at end of file diff --git a/pages.ko/common/code.md b/pages.ko/common/code.md new file mode 100644 index 0000000000..a772e66ede --- /dev/null +++ b/pages.ko/common/code.md @@ -0,0 +1,24 @@ +# code + +> 비주얼 스튜디오 코드. +> 더 많은 정보: . + +- VS Code 열기: + +`code` + +- 현재 디렉토리에서 VS Code 열기: + +`code .` + +- 파일이나 디렉토리에서 VS Code 열기: + +`code {{경로/파일_혹은_디렉토리}}` + +- 현재 열려 있는 VS 코드 창에서 파일 또는 디렉토리를 열기: + +`code --reuse-window {{경로/파일_혹은_디렉토리}}` + +- 두 개의 VS Code 파일 비교: + +`code -d {{파일1}} {{파일2}}` diff --git a/pages.ko/common/coffee.md b/pages.ko/common/coffee.md new file mode 100644 index 0000000000..da341b045e --- /dev/null +++ b/pages.ko/common/coffee.md @@ -0,0 +1,24 @@ +# coffee + +> Coffee Script를 실행하거나 JavaScript로 컴파일합니다. +> 더 많은 정보: . + +- 스크립트 실행: + +`coffee {{경로/파일.coffee}}` + +- JavaScript로 컴파일 하거나 같은 이름의 파일로 저장합니다: + +`coffee --compile {{경로/파일.coffee}}` + +- JavaScript로 컴파일 하거나 주어진 출력 파일로 저장합니다: + +`coffee --compile {{경로/파일.coffee}} --output {{경로/파일.js}}` + +- 대화형 REPL 실행: + +`coffee --interactive` + +- 스크립트의 변화를 보거나 다시 실행합니다: + +`coffee --watch {{경로/파일.coffee}}` diff --git a/pages.ko/common/column.md b/pages.ko/common/column.md new file mode 100644 index 0000000000..8a62a99378 --- /dev/null +++ b/pages.ko/common/column.md @@ -0,0 +1,20 @@ +# column + +> 표준 입력 또는 파일을 여러 열로 포맷 설정. +> 행은 열 앞에 채워집니다; 기본 구분 기호는 공백입니다. + +- 30자 폭 디스플레이의 형식 출력으로 포맷 정하기: + +`printf "header1 header2\nbar foo\n" | column -c {{30}}` + +- 열 자동 분할 및 자동 정렬을 표 형식으로 분할: + +`printf "header1 header2\nbar foo\n" | column -t` + +- -t 옵션(예: "", csv)에 대한 열 구분 기호 문자를 지정; 기본값은 공백입니다: + +`printf "header1,header2\nbar,foo\n" | column -t -s{{,}}` + +- 행을 채우기 전에 열을 채웁니다: + +`printf "header1\nbar\nfoobar\n" | column -c {{30}} -x` diff --git a/pages.ko/common/comm.md b/pages.ko/common/comm.md new file mode 100644 index 0000000000..5be0249315 --- /dev/null +++ b/pages.ko/common/comm.md @@ -0,0 +1,24 @@ +# comm + +> 두 파일의 공통되는 줄을 선택하거나 거절합니다. +> 두 파일 모두 정렬되어 있어야합니다. + +- 세 개의 탭으로 구분된 열을 생성합니다: 첫 번째 파일에는 줄만, 두 번째 파일에서는 줄들과 공통 줄: + +`comm {{파일1}} {{파일2}}` + +- 두 파일의 공통된 줄들만 출력: + +`comm -12 {{파일1}} {{파일2}}` + +- `stdin`으로 읽어드린 하나의 파일과 나머지 파일의 공통된 줄들만 출력: + +`cat {{파일1}} | comm -12 - {{파일2}}` + +- 첫 번째 파일에서만 줄을 가져오고 결과를 세 번째 파일에 저장: + +`comm -23 {{파일1}} {{파일2}} > {{파일1_only}}` + +- 파일이 정렬되지 않은 경우 두 번째 파일에서만 줄을 출력합니다: + +`comm -13 <(sort {{파일1}}) <(sort {{파일2}})` diff --git a/pages.ko/common/command.md b/pages.ko/common/command.md new file mode 100644 index 0000000000..e5eed9b6c0 --- /dev/null +++ b/pages.ko/common/command.md @@ -0,0 +1,7 @@ +# command + +> Command 명령은 쉘이 프로그램을 실행하고 동일한 이름의 기능, 빌드인 및 별칭을 무시하도록 합니다. + +- ls 별칭이 존재하더라도 문자 그대로 ls 프로그램을 실행: + +`command {{ls}}` \ No newline at end of file