1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 11:53:11 +02:00

hadolint, hakyll-init, handbrakecli: add Korean translation (#14444)

This commit is contained in:
HoJeong Im 2024-10-31 00:33:48 +09:00 committed by GitHub
parent d6d3889f2f
commit 925077a312
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,24 @@
# hadolint
> Dockerfile 린터.
> 더 많은 정보: <https://github.com/hadolint/hadolint>.
- Dockerfile 린트:
`hadolint {{경로/대상/Dockerfile}}`
- Dockerfile을 린트하여, 출력을 JSON 형식으로 표시:
`hadolint --format {{json}} {{경로/대상/Dockerfile}}`
- Dockerfile을 린트하여, 특정 형식으로 출력을 표시:
`hadolint --format {{tty|json|checkstyle|codeclimate|codacy}} {{경로/대상/Dockerfile}}`
- 특정 규칙을 무시하고 Dockerfile을 린트:
`hadolint --ignore {{DL3006}} --ignore {{DL3008}} {{경로/대상/Dockerfile}}`
- 특정 신뢰할 수 있는 레지스트리를 사용하여 여러 Dockerfile을 린트하는 것:
`hadolint --trusted-registry {{docker.io}} --trusted-registry {{example.com}}:{{5000}} {{경로/대상/Dockerfile1 경로/대상/Dockerfile2 ...}}`

View file

@ -0,0 +1,12 @@
# hakyll-init
> 새로운 Hakyll 샘플 블로그 생성.
> 더 많은 정보: <https://github.com/jaspervdj/hakyll-init>.
- 새로운 Hakyll 샘플 블로그 생성:
`hakyll-init {{경로/대상/디렉토리}}`
- 도움말 표시:
`hakyll-init --help`

View file

@ -0,0 +1,28 @@
# handbrakecli
> HandBrake 비디오 변환 및 DVD 리핑 도구에 대한 명령줄 인터페이스.
> 더 많은 정보: <https://handbrake.fr/>.
- 비디오 파일을 MKV(AAC 160kbit 오디오 및 x264 CRF20 비디오)로 변환:
`handbrakecli --input {{입력.avi}} --output {{출력.mkv}} --encoder x264 --quality 20 --ab 160`
- 비디오 파일 크기를 320x240으로 조정:
`handbrakecli --input {{입력.mp4}} --output {{출력.mp4}} --width 320 --height 240`
- 사용 가능한 사전 설정 목록:
`handbrakecli --preset-list`
- Android 사전 설정을 사용하여 AVI 비디오를 MP4로 변환:
`handbrakecli --preset="Android" --input {{입력.ext}} --output {{출력.mp4}}`
- DVD 내용을 출력하고 그 과정에서 CSS 키를 가져옴:
`handbrakecli --input {{/dev/sr0}} --title 0`
- 지정된 장치에서 DVD의 첫 번째 트랙을 추출. 오디오트랙과 자막 언어는 목록으로 지정됨:
`handbrakecli --input {{/dev/sr0}} --title 1 --output {{out.mkv}} --format av_mkv --encoder x264 --subtitle {{1,4,5}} --audio {{1,2}} --aencoder copy --quality {{23}}`