goldenpad

(★ 152)

GoldenEye 007, native for iPhone, iPad, and Apple Silicon Mac. Metal, touch controls, and user-supplied retail data.

파일 탐색기

  • .gitignore
  • CMakeLists.txt
  • CONTRIBUTING.md
  • README.md
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

brew install

설명 보기 ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

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:

🔍

shasum

설명 보기 ▼

SHA 암호화 체크섬 계산.
더 많은 정보: <https://manned.org/shasum>.

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

하나 이상의 파일에 대해 SHA1 체크섬 계산:

shasum --algorithm {{1|224|256|384|512|512224|512256}} {{path/to/file1 path/to/file2 ...}}

하나 이상의 파일에 대해 SHA256 체크섬 계산:

{{command}} | shasum

하나 이상의 파일에 대해 SHA512 체크섬 계산:

🔍

xdelta

설명 보기 ▼

델타 인코딩 유틸리티.
주로 바이너리 파일에 패치를 적용하는 데 사용됩니다.
더 많은 정보: <https://manned.org/xdelta>.

xdelta delta {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

패치 적용:

xdelta patch {{path/to/patch_file}} {{path/to/old_file}} {{path/to/new_file}}

패치 생성:

xdelta delta -{{0..9}} {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

Generate a patch with a specific compression level:

🔍

xdelta3

설명 보기 ▼

A delta compression tool for binary files.

xdelta3 -e -s {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

Create a patch ([e]ncode) based on a [s]ource file:

xdelta3 -d -s {{path/to/old_file}} {{path/to/patch_file}} {{path/to/new_file}}

Apply a patch ([d]ecompress) to a [s]ource file:

xdelta3 -{{0..9}} -s {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

Create a patch with a specific compression level:

🔍

xcrun

설명 보기 ▼

개발 도구 및 속성을 실행하거나 찾습니다.
더 많은 정보: <https://keith.github.io/xcode-man-pages/xcrun.1.html>.

xcrun {{tool}} {{arguments}}

활성 개발자 디렉토리에서 도구를 찾고 실행:

xcrun {{tool}} {{arguments}} --verbose

자세한 출력 표시:

xcrun --sdk {{sdk_name}}

주어진 SDK에 대한 도구 찾기:

// repository documentation