go-mtree

(★ 101)

File systems verification utility and library, in likeness of mtree(8)

파일 탐색기

  • .drone.yml
  • .gitignore
  • check.go
  • check_test.go
  • cksum.go
  • cksum_test.go
  • compare.go
  • compare_test.go
  • creator.go
  • doc.go
  • entry.go
  • fseval.go
  • fseval_test.go
  • go.mod
  • go.sum
  • hierarchy.go
  • hierarchy_test.go
  • keywordfunc.go
  • keywordfuncs_bsd.go
  • keywordfuncs_linux.go
  • keywordfuncs_unsupported.go
  • keywords.go
  • keywords_linux_test.go
  • keywords_test.go
  • lchtimes_unix.go
  • lchtimes_unsupported.go
  • LICENSE
  • lookup.go
  • Makefile
  • mtree_test.go
  • parse.go
  • README.md
  • releases.md
  • stat_unix.go
  • stat_windows.go
  • tar.go
  • tar_test.go
  • update.go
  • update_linux_test.go
  • update_test.go
  • updatefuncs.go
  • updatefuncs_linux.go
  • updatefuncs_unsupported.go
  • walk.go
  • walk_test.go
  • xdev_unix.go
  • xdev_windows.go

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

cksum

설명 보기 ▼

파일의 바이트 개수나 CRC 무결성 검사를 계산합니다.
알립니다: 오래된 UNIX 시스템은 CRC 검사가 다를 수 있습니다.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/cksum-invocation.html>.

cksum {{path/to/file}}

바이트 단위의 사이즈와 파일이름의 32비트 무결성 검사를 보여줍니다:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

go build

설명 보기 ▼

Compile Go sources.

go build {{path/to/main.go}}

Compile a 'package main' file (output will be the filename without extension):

go build -o {{path/to/binary}} {{path/to/source.go}}

Compile, specifying the output filename:

go build -o {{path/to/binary}} {{path/to/package}}

Compile a package:

🔍

go install

설명 보기 ▼

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

🔍

time

설명 보기 ▼

명령어 실행 시간을 측정.
참고: `time`은 셸 내장 명령어이거나 독립 실행형 프로그램이거나 둘 다일 수 있습니다.
관련 항목: `times`.
더 많은 정보: <https://manned.org/time>.

time {{command}}

`command`를 실행하고 시간 측정 결과를 `stdout`에 출력:

time

현재 시스템 시간 표시 및 새 시간 입력 요청 (비워두면 변경되지 않음):

time read

매우 간단한 스톱워치 생성 (Bash에서만 작동):

🔍

gmake

설명 보기 ▼

이 명령은 `make`의 별칭입니다.

tldr make

자세한 내용은 원본 명령을 참고하세요:

🔍

md5

설명 보기 ▼

MD5 암호화 체크섬을 계산합니다.
더 많은 정보: <https://keith.github.io/xcode-man-pages/md5.1.html>.

md5 {{path/to/file}}

파일의 MD5 체크섬 계산:

md5 {{path/to/file1 path/to/file2 ...}}

여러 파일의 MD5 체크섬 계산:

md5 -q {{path/to/file}}

파일명 없이 MD5 체크섬만 출력:

🔍

xattr

설명 보기 ▼

확장 파일 시스템 속성을 다루는 유틸리티.
더 많은 정보: <https://keith.github.io/xcode-man-pages/xattr.1.html>.

xattr -l {{file}}

주어진 파일의 key:value 확장 속성 나열:

xattr -w {{attribute_key}} {{attribute_value}} {{file}}

주어진 파일에 속성 작성:

xattr -d {{com.apple.quarantine}} {{file}}

주어진 파일에서 속성 삭제:

# 프로젝트 배지

// repository documentation