1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 17:06:01 +02:00
tldr/pages.ko/common/md5sum.md
코드싸이 feb91d75ea
mpv: fix typo, common/m*: add and update Korean translation (#14664)
* common/m*: add and update Korean translation

* mpv: fix typo
2024-11-07 09:27:03 +09:00

865 B

md5sum

MD5 암호화 체크섬 계산. 더 많은 정보: https://www.gnu.org/software/coreutils/md5sum.

  • 하나 이상의 파일에 대한 MD5 체크섬 계산:

md5sum {{경로/대상/파일1 경로/대상/파일2 ...}}

  • MD5 체크섬 목록을 파일에 계산하고 저장:

md5sum {{경로/대상/파일1 경로/대상/파일2 ...}} > {{경로/대상/파일.md5}}

  • stdin에서 MD5 체크섬 계산:

{{명령어}} | md5sum

  • MD5 합 및 파일 이름이 포함된 파일을 읽고 모든 파일이 일치하는지 확인:

md5sum --check {{경로/대상/파일.md5}}

  • 누락된 파일이나 확인 실패 시 메시지만 표시:

md5sum --check --quiet {{경로/대상/파일.md5}}

  • 누락된 파일은 무시하고 확인 실패 시 메시지만 표시:

md5sum --ignore-missing --check --quiet {{경로/대상/파일.md5}}