ari

(★ 26)

Quiet AI on Your Mac.

파일 탐색기

  • .gitignore
  • LICENSE
  • 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:

🔍

git checkout

설명 보기 ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

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:

🔍

killall

설명 보기 ▼

프로세스 이름으로 모든 인스턴스에 종료 신호를 보냅니다 (정확한 이름이어야 함).
SIGKILL 및 SIGSTOP을 제외한 모든 신호는 프로세스에 의해 가로채어져 클린 종료가 가능합니다.
더 많은 정보: <https://manned.org/killall>.

killall {{process_name}}

기본 SIGTERM (종료) 신호를 사용하여 프로세스 종료:

killall {{[-l|--list]}}

사용 가능한 신호 이름 [l]ist 보기 ('SIG' 접두사 없이 사용):

killall {{[-i|--interactive]}} {{process_name}}

종료 전에 인터랙티브하게 확인 요청:

🔍

lsof

설명 보기 ▼

열린 파일과 상응하는 프로세스들을 나열합니다.
참고: 다른 사람으로부터 열린 파일 리스트는 루트 권한 ( 혹은 sudo ) 이 요구됩니다.
더 많은 정보: <https://manned.org/lsof>.

lsof {{path/to/file}}

주어진 파일을 열고있는 프로세스 찾기:

lsof -i :{{port}}

로컬 인터넷 포트를 열고있는 프로세스 찾기:

lsof -t {{path/to/file}}

프로세스 아이디 (PID)만 출력:

🔍

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