zennotes

(★ 2,335)

Keyboard-first local Markdown notes with Vim motions, diagrams, and MCP integration.

파일 탐색기

  • .gitignore
  • CONTRIBUTING.md
  • docker-compose.yml
  • Dockerfile
  • flake.lock
  • flake.nix
  • guide.md
  • LICENSE
  • Makefile
  • package-lock.json
  • package.json
  • postcss.config.js
  • README.md
  • SECURITY.md
  • tailwind.config.js
  • tsconfig.base.json
  • tsconfig.json
  • turbo.json

# 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:

🔍

fzf

설명 보기 ▼

명령줄 퍼지 찾기.
`sk`와 유사.
더 많은 정보: <https://github.com/junegunn/fzf#usage>.

find {{path/to/directory}} -type f | fzf

지정된 디렉터리의 모든 파일에서 `fzf`를 시작:

ps aux | fzf

프로세스 실행을 위해 `fzf`를 시작:

find {{path/to/directory}} -type f | fzf {{[-m|--multi]}} > {{path/to/file}}

`<Shift Tab>`을 사용해 여러 파일을 선택하고 파일에 작성:

🔍

npm ci

설명 보기 ▼

Clean install of `npm` project dependencies for automated environments.
Installs packages based on `package-lock.json` or `npm-shrinkwrap.json`.

npm ci

Install project dependencies from `package-lock.json` or `npm-shrinkwrap.json`:

npm ci --omit {{dev|optional|peer}}

Install project dependencies but skip the specified dependency type:

npm ci --ignore-scripts

Install project dependencies without running any pre-/post-scripts defined in `package.json`:

🔍

npm run

설명 보기 ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

apt install

설명 보기 ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

dnf install

설명 보기 ▼

Install packages on Red Hat-based distributions.

sudo dnf {{[in|install]}} {{package1 package2 ...}}

Install packages by name:

sudo dnf {{[in|install]}} {{path/to/file}}

Install a package from a local file:

sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}

Install a package from the internet:

🔍

pacman -S

설명 보기 ▼

This command is an alias of `pacman --sync`.

tldr pacman sync

View documentation for the original command:

🔍

pacman -U

설명 보기 ▼

This command is an alias of `pacman --upgrade`.

tldr pacman upgrade

View documentation for the original command:

🔍

trash

설명 보기 ▼

휴지통/재활용통 관리.
더 많은 정보: <https://github.com/andreafrancia/trash-cli>.

trash {{path/to/file}}

파일을 휴지통으로 보내기:

trash {{path/to/file}}

Move a file to the trash:

trash-list

휴지통에 있는 모든 파일 나열:

🔍

yay

설명 보기 ▼

Yet Another Yogurt: Arch User Repository(AUR)에서 패키지를 빌드하고 설치합니다.
관련 항목: `pacman`.
더 많은 정보: <https://github.com/Jguer/yay#first-use>.

yay {{package_name|search_term}}

저장소와 AUR에서 패키지를 검색하고 상호작용하며 설치:

yay

저장소와 AUR의 모든 패키지를 동기화하고 업데이트:

yay -S {{package}} --noconfirm

AUR 패키지만 동기화하고 업데이트:

// repository documentation