macOCR

(★ 2,422)

Get any text on your screen into your clipboard.

파일 탐색기

  • .codespellrc
  • .gitignore
  • Podfile
  • Podfile.lock
  • README.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:

🔍

brew upgrade

설명 보기 ▼

Upgrade outdated formulae and casks.

brew upgrade

Upgrade all outdated casks and formulae:

brew upgrade {{formula|cask}}

Upgrade a specific formula/cask:

brew upgrade {{[-n|--dry-run]}}

Print what would be upgraded, but don't actually upgrade anything:

🔍

done

설명 보기 ▼

`for`, `while`, `select`, `until` 루프의 끝을 표시하는 쉘 키워드.

tldr for

`for` 키워드 문서 확인:

tldr while

`while` 키워드 문서 확인:

tldr select

`select` 키워드 문서 확인:

🔍

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:

🔍

tar

설명 보기 ▼

아카이브 유틸리티.
종종 `gzip` 또는 `bzip2`와 같은 압축 방법과 결합하여 사용됩니다.
더 많은 정보: <https://www.gnu.org/software/tar/manual/tar.html>.

tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}

아카이브 생성 후 파일로 저장:

tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}

g[z]ipped 아카이브 생성 후 파일로 저장:

tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .

디렉토리에서 상대 경로를 사용하여 g[z]ipped (압축된) 아카이브 생성:

🔍

x86_64

설명 보기 ▼

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

tldr setarch

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

🔍

pod

설명 보기 ▼

Swift 및 Objective-C Cocoa 프로젝트를 위한 종속성 관리 도구.
더 많은 정보: <https://guides.cocoapods.org/terminal/commands.html>.

pod init

현재 프로젝트에 기본 내용으로 Podfile 생성:

pod install

Podfile에 정의된 모든 포드를 다운로드 및 설치 (이전에 설치되지 않은 경우):

pod list

사용 가능한 모든 포드 나열:

🔍

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}}

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

🔍

xcodebuild

설명 보기 ▼

Xcode 프로젝트 빌드.
더 많은 정보: <https://developer.apple.com/library/archive/technotes/tn2339/_index.html>.

xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

워크스페이스 빌드:

xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

프로젝트 빌드:

xcodebuild -showsdks

SDK 표시:

// repository documentation