goenv

(★ 16)

TUI for viewing and editing Go environment variables

파일 탐색기

  • .gitattributes
  • .gitignore
  • .goreleaser.yaml
  • go.mod
  • go.sum
  • LICENSE
  • mise.toml
  • 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:

🔍

fish

설명 보기 ▼

사용자 친화적으로 설계된 명령줄 해석기인 Friendly Interactive SHell입니다.
더 많은 정보: <https://fishshell.com/docs/current/cmds/fish.html>.

fish

대화형 쉘 세션을 시작:

fish {{[-N|--no-config]}}

시작 구성을 로드하지 않고 대화형 쉘 세션을 시작:

fish {{[-c|--command]}} "{{echo 'fish is executed'}}"

특정 명령을 실행:

🔍

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:

🔍

go env

설명 보기 ▼

Manage environment variables used by the Go toolchain.

go env

Show all environment variables:

go env {{GOPATH}}

Show a specific environment variable:

go env -w {{GOBIN}}={{path/to/directory}}

Set an environment variable to a value:

🔍

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:

🔍

goenv

설명 보기 ▼

Golang 버전을 설치, 제거 또는 전환하는 도구.
"1.16.15", "1.22.8" 등과 같은 버전 번호 지원.
더 많은 정보: <https://github.com/go-nv/goenv>.

goenv commands

사용 가능한 모든 goenv 명령 목록 표시:

goenv install {{go_version}}

특정 Golang 버전 설치:

goenv local {{go_version}}

현재 프로젝트에서 특정 Golang 버전 사용:

🔍

mise

설명 보기 ▼

다양한 패키지의 버전을 관리.
더 많은 정보: <https://mise.jdx.dev/cli/>.

mise plugins list-all

사용 가능한 모든 플러그인 나열:

mise plugins add {{name}}

플러그인 설치:

mise ls-remote {{name}}

설치 가능한 런타임 버전 나열:

🔍

powershell

설명 보기 ▼

이 명령은 `powershell` 대신 `pwsh`를 사용하는 크로스 플랫폼 버전의 PowerShell(이전에는 PowerShell Core로 알려짐)과 혼동될 수 있습니다.
Windows의 원본 `powershell` 명령은 레거시 Windows 버전의 PowerShell(버전 5.1 이하)을 사용하는 데 여전히 사용할 수 있습니다.
더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh>.

tldr pwsh

최신 크로스 플랫폼 버전의 PowerShell(버전 6 이상)의 명령에 대한 문서 보기:

powershell

대화형 쉘 세션 시작:

tldr powershell {{[-p|--platform]}} windows

레거시 Windows PowerShell(버전 5.1 이하)의 명령에 대한 문서 보기:

🔍

light

설명 보기 ▼

Control the backlight of your screen.

light

Get the current backlight value in percent:

light -S {{50}}

Set the backlight value to 50 percent:

light -U {{20}}

Reduce 20 percent from the current backlight value:

# 프로젝트 배지

// repository documentation