bluefin-cli
No description available.
bluefin-cli 최신버젼 다운로드
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
brew install
설명 보기 ▼
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 tap
설명 보기 ▼
brew tap
Tap a Homebrew formula repository. If no arguments are provided, list all installed Homebrew taps.
brew tap
List installed Homebrew taps:
brew tap {{github_username}}/{{github_repository_name}}
Tap a Git repository hosted on GitHub:
brew tap {{username}}/{{repository_name}} {{git_clone_url}}
Tap a Git repository hosted outside of GitHub:
brew
설명 보기 ▼
brew
macOS와 Linux를 위한 패키지 관리자.
더 많은 정보: <https://docs.brew.sh/Manpage>.
brew install {{formula|cask}}
공식(formula) 혹은 캐스크(cask)의 최신 안정 버전을 설치:
brew list
설치된 모든 공식(formulae)과 캐스크(casks) 나열:
brew upgrade {{formula|cask}}
설치된 특정 공식(formula) 혹은 캐스크(cask) 업그레이드 (옵션이 주어지지 않으면 모든 공식과 캐스크 업그레이드):
git checkout
설명 보기 ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
설명 보기 ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
설명 보기 ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
go build
설명 보기 ▼
go build
Compile Go sources.
go build {{path/to/main.go}}
Compile a 'package main' file (output will be the filename without extension):
go build -o {{path/to/binary}} {{path/to/source.go}}
Compile, specifying the output filename:
go build -o {{path/to/binary}} {{path/to/package}}
Compile a package:
go install
설명 보기 ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
go test
설명 보기 ▼
go test
Test Go packages (files have to end with `_test.go`).
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go test
Test the package found in the current directory:
go test -v
[v]erbosely test the package in the current directory:
go test -v ./...
Test the packages in the current directory and all subdirectories:
just
설명 보기 ▼
just
`just`는 동일한 이름을 가진 여러 명령을 참조할 수 있습니다.
just {{recipe}}
명령 실행기에 대한 문서 보기:
just
Start a REPL (interactive shell):
just --init
V8 JavaScript 런타임에 대한 문서 보기:
dpkg
설명 보기 ▼
dpkg
Debian 패키지 관리자.
`deb`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://manned.org/dpkg>.
sudo dpkg {{[-i|--install]}} {{path/to/file.deb}}
패키지 설치:
sudo dpkg {{[-r|--remove]}} {{package}}
패키지 제거:
dpkg {{[-l|--list]}} {{pattern}}
설치된 패키지 나열:
rpm
설명 보기 ▼
rpm
RPM 패키지 관리 도구.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://rpm-software-management.github.io/rpm/man/rpm.8>.
rpm {{[-q|--query]}} httpd
httpd 패키지의 버전 표시:
rpm {{[-qa|--query --all]}} '{{mariadb*}}'
모든 일치하는 패키지의 버전 나열:
rpm {{[-U|--upgrade]}} {{path/to/package.rpm}} --force
현재 설치된 버전에 상관없이 강제로 패키지 설치:
yay
설명 보기 ▼
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 패키지만 동기화하고 업데이트:
choco
설명 보기 ▼
choco
Chocolatey 패키지 관리자.
`install`과 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://docs.chocolatey.org/en-us/choco/commands/>.
choco install {{package_name}}
Chocolatey 명령 실행:
choco upgrade {{package_name}}
도움말 표시:
choco upgrade all {{[-y|--yes]}}
특정 명령에 대한 도움말 표시:
scoop bucket
설명 보기 ▼
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
Scoop 패키지 관리자.
`bucket`과 같은 하위 명령어는 자체 문서를 가지고 있습니다.
더 많은 정보: <https://github.com/ScoopInstaller/Scoop/wiki/Commands>.
scoop install {{package}}
패키지 설치:
scoop uninstall {{package}}
패키지 제거:
scoop update --all
모든 설치된 패키지 업데이트:
winget
설명 보기 ▼
winget
윈도우 패키지 매니저.
더 많은 정보: <https://learn.microsoft.com/windows/package-manager/winget>.
winget {{[add|install]}} {{package}}
패키지 설치:
winget {{[rm|uninstall]}} {{package}}
패키지 제거 (참고: `remove` 대신 `uninstall` 을 사용할 수 있음):
winget show {{package}}
패키지에 대한 정보 표시:
# 프로젝트 배지
-
License 바로가기
