*: trim multiple spaces, fix line endings

This commit is contained in:
bl-ue
2021-04-03 14:51:56 -04:00
committed by Starbeamrainbowlabs
parent 65746eb5bb
commit 04dd546e2d
41 changed files with 113 additions and 113 deletions

View File

@@ -3,7 +3,7 @@
> 터미널 세션을 녹음하고 재생하며 선택적으로 asciinema.org에서 공유합니다.
> 더 많은 정보: <https://asciinema.org/>.
- `asciinema` 로컬 설치와 with an asciinema.org 계정을 연결하기:
- `asciinema` 로컬 설치와 with an asciinema.org 계정을 연결하기:
`asciinema auth`

View File

@@ -1,6 +1,6 @@
# clang
> C, C++ 그리고 Objective-C 소스 파일을 컴파일합니다. GCC의 드롭인 대체로 사용할 수 있습니다.
> C, C++ 그리고 Objective-C 소스 파일을 컴파일합니다. GCC의 드롭인 대체로 사용할 수 있습니다.
> 더 많은 정보: <https://clang.llvm.org/docs/ClangCommandLineReference.html>.
- 실행 가능한 바이너리 파일로 소스 코드를 컴파일합니다:

View File

@@ -3,7 +3,7 @@
> Imagemagick 이미지 변환 도구.
> 더 많은 정보: <https://imagemagick.org/script/convert.php>.
- JPG이미지를 PNG이미지로 변환:
- JPG이미지를 PNG이미지로 변환:
`convert {{이미지.jpg}} {{이미지.png}}`

View File

@@ -19,7 +19,7 @@
`dig @{{8.8.8.8}} {{example.com}}`
- IP 주소에서 역방향 DNS 조회하기 (PTR record):
- IP 주소에서 역방향 DNS 조회하기 (PTR record):
`dig -x {{8.8.8.8}}`

View File

@@ -11,6 +11,6 @@
`dirname {{경로/a_파일}} {{경로/b_디렉토리}}`
- 개행 대신 NUL 문자로 출력을 구분하기 (`xargs`와 결합 시 유용함):
- 개행 대신 NUL 문자로 출력을 구분하기 (`xargs`와 결합 시 유용함):
`dirname --zero {{경로/a_디렉토리}} {{경로/b_파일}}`