arf

(★ 353)

Alternative R Frontend — a modern R console written in Rust

파일 탐색기

  • .gitattributes
  • .gitignore
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • dist-workspace.toml
  • LICENSE.md
  • 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:

🔍

cargo binstall

설명 보기 ▼

Install Rust binaries from CI artifacts.
Falls back to `cargo install` (from source code) if there are no binaries available.
Note: This is not a built-in Cargo command, you need to install it first.

cargo binstall {{package}}

Install a package from <https://crates.io>:

cargo binstall {{package}}@{{version}}

Install a specific version of a package (latest by default):

cargo binstall {{[-y|--no-confirm]}} {{package}}

Install a package and disable confirmation prompts:

🔍

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:

🔍

popd

설명 보기 ▼

`pushd` 셸 내장 명령어를 통해 디렉토리 스택에 올려놓은 디렉토리를 제거.
관련 항목: `pushd`, `dirs`.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-popd>.

popd

스택의 최상위 디렉토리를 제거하고 해당 디렉토리로 이동:

popd

스택의 가장 위에 있는 디렉토리로 전환:

popd +N

N번째 디렉토리 제거 (왼쪽에서 0부터 시작, `dirs`로 출력된 목록 기준):

🔍

pushd

설명 보기 ▼

디렉터리를 스택에 쌓아 나중에 접근할 수 있도록 합니다.
관련 항목: `popd`, `dirs`.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-pushd>.

pushd {{path/to/directory}}

디렉터리로 이동하고 스택에 추가:

pushd {{path\to\directory}}

디렉토리로 전환하고 스택에 배치:

pushd

스택의 첫 번째와 두 번째 디렉터리를 전환:

🔍

paru

설명 보기 ▼

AUR 헬퍼 및 pacman 래퍼.
관련 항목: `pacman`, `yay`.
더 많은 정보: <https://github.com/Morganamilo/paru#examples>.

paru {{package_name_or_search_term}}

패키지를 대화식으로 검색하고 설치:

paru

모든 패키지를 동기화하고 업데이트:

paru -Sua

AUR 패키지 업그레이드:

🔍

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 패키지만 동기화하고 업데이트:

🔍

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

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

🔍

winget

설명 보기 ▼

윈도우 패키지 매니저.
더 많은 정보: <https://learn.microsoft.com/windows/package-manager/winget>.

winget {{[add|install]}} {{package}}

패키지 설치:

winget {{[rm|uninstall]}} {{package}}

패키지 제거 (참고: `remove` 대신 `uninstall` 을 사용할 수 있음):

winget show {{package}}

패키지에 대한 정보 표시:

// repository documentation