restorekit

(★ 11)

Reformat an Apple Silicon mac from any platform.

파일 탐색기

  • .gitignore
  • .gitmodules
  • .goreleaser.yaml
  • Cargo.lock
  • Cargo.toml
  • justfile
  • LICENSE
  • NOTICE
  • package.json
  • pnpm-lock.yaml
  • pnpm-workspace.yaml
  • 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

설명 보기 ▼

macOS와 Linux를 위한 패키지 관리자.
더 많은 정보: <https://docs.brew.sh/Manpage>.

brew install {{formula|cask}}

공식(formula) 혹은 캐스크(cask)의 최신 안정 버전을 설치:

brew list

설치된 모든 공식(formulae)과 캐스크(casks) 나열:

brew upgrade {{formula|cask}}

설치된 특정 공식(formula) 혹은 캐스크(cask) 업그레이드 (옵션이 주어지지 않으면 모든 공식과 캐스크 업그레이드):

🔍

cargo build

설명 보기 ▼

Compile a local package and all of its dependencies.

cargo {{[b|build]}}

Build the package or packages defined by the `Cargo.toml` manifest file in the local path:

cargo {{[b|build]}} {{[-r|--release]}}

Build artifacts in release mode, with optimizations:

cargo {{[b|build]}} --locked

Require that `Cargo.lock` is up to date:

🔍

cargo install

설명 보기 ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

snap

설명 보기 ▼

Manage the "snap" self-contained software packages.
Similar to what `apt` is for `.deb`.

snap find {{query}}

Search for a package:

snap install {{package}}

Install a package:

snap refresh {{package}}

Update a package:

🔍

udevadm

설명 보기 ▼

Linux `udev` 관리 도구.
더 많은 정보: <https://www.freedesktop.org/software/systemd/man/latest/udevadm.html>.

sudo udevadm monitor

모든 장치 이벤트 모니터링:

sudo udevadm monitor {{[-k|--kernel]}}

커널에 의해 전송된 `uevent` 출력:

sudo udevadm monitor {{[-u|--udev]}}

`udev`에 의해 처리된 후의 장치 이벤트 출력:

🔍

scoop bucket

설명 보기 ▼

Manage buckets: Git repositories containing files which describe how scoop installs applications.
If Scoop doesn't know where the bucket is located its repository location must be specified.

scoop bucket list

List all buckets currently in use:

scoop bucket known

List all known buckets:

scoop bucket add {{name}}

Add a known bucket by its name:

🔍

scoop

설명 보기 ▼

Scoop 패키지 관리자.
`bucket`과 같은 하위 명령어는 자체 문서를 가지고 있습니다.
더 많은 정보: <https://github.com/ScoopInstaller/Scoop/wiki/Commands>.

scoop install {{package}}

패키지 설치:

scoop uninstall {{package}}

패키지 제거:

scoop update --all

모든 설치된 패키지 업데이트:

// repository documentation