upac

(★ 18)

Package manager for installing any type of package in Linux, as well as registering binary file rollbacks based on ComposeFS, written in Rust

파일 탐색기

  • .gitattributes
  • .gitignore
  • Cargo.toml
  • CONTRIBUTING.md
  • LICENSE
  • README.md
  • REUSE.toml
  • ROADMAP.md
  • rust-toolchain.toml
  • rustfmt.toml
  • SECURITY.md
  • TODO.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

pkg

설명 보기 ▼

Termux용 패키지 관리 유틸리티.
더 많은 정보: <https://wiki.termux.com/wiki/Package_Management>.

pkg {{[up|upgrade]}}

설치됨 모든 패키지 업그레이드:

pkg install {{package}}

새 패키지 설치:

tldr pkg_add

패키지 설치/업데이트에 대한 설명서 보기:

🔍

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:

🔍

zig

설명 보기 ▼

Zig 컴파일러 및 툴체인.
더 많은 정보: <https://ziglang.org/documentation/master/>.

zig build

현재 디렉토리의 프로젝트 컴파일:

zig build run

현재 디렉토리의 프로젝트 컴파일 및 실행:

zig init

`zig build` 애플리케이션 초기화:

// repository documentation