plandb

(★ 101)

The issue tracker your AI agents are missing. Think Linear or Jira, but for your Claude Code..

파일 탐색기

  • .gitignore
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • CLAUDE.md
  • CONTRIBUTING.md
  • install.sh
  • LICENSE
  • README.md
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

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:

🔍

compare

설명 보기 ▼

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

tldr magick compare

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

🔍

split

설명 보기 ▼

파일을 여러 조각으로 분할.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/split-invocation.html>.

split {{[-l|--lines]}} 10 {{path/to/file}}

파일을 10줄씩 분할 (마지막 조각 제외):

split -l 10 {{path/to/file}}

파일을 각 조각이 10줄씩 되도록 분할 (마지막 조각 제외):

split {{[-n|--number]}} 5 {{path/to/file}}

파일을 5개의 파일로 분할. 각 조각이 동일한 크기를 갖도록 분할 (마지막 조각 제외):

// repository documentation