cux
Run multiple Claude Code accounts as one. Auto-switches on rate limits and resumes your session no lost context, no logout dance.
파일 탐색기
- settings.local.json
- release.yml
- FUNDING.yml
- cux-banner.webp
- cux-mark.svg
- attach.go
- attach_windows.go
- main.go
- main_test.go
- setup.go
- slashcmd_cux_add.md
- slashcmd_cux_config.md
- slashcmd_cux_list.md
- slashcmd_cux_remove.md
- slashcmd_cux_status.md
- slashcmd_cux_support.md
- slashcmd_cux_switch.md
- slashcmd_cux_usage_refresh.md
- slashcmd_switch.md
- terminal_ansi_other.go
- terminal_ansi_windows.go
- installation.md
- linux.md
- macos.md
- README.md
- troubleshooting.md
- windows.md
- atomicfile.go
- branding.go
- claudecfg.go
- config.go
- config_test.go
- creds.go
- creds_test.go
- keychain_darwin_test.go
- keychain_multi_darwin_test.go
- history.go
- history_test.go
- hookinstall.go
- hookinstall_test.go
- apifailure_test.go
- hooks.go
- hooks_test.go
- promptsubmitted_test.go
- lockfile.go
- lockfile_unix.go
- lockfile_windows.go
- freshness_test.go
- monitor.go
- monitor_test.go
- paths.go
- attach_replay_test.go
- frame.go
- history.go
- history_test.go
- mastereof_test.go
- ptyhost.go
- ptyhost_test.go
- ptyhost_windows.go
- ptyhost_windows_test.go
- relaunch_test.go
- resize_signal_test.go
- alive_test.go
- alive_unix.go
- alive_windows.go
- reap_test.go
- registry.go
- registry_test.go
- session.go
- signals.go
- projects.go
- projects_test.go
- store.go
- store_test.go
- modelwindows_test.go
- strategy.go
- strategy_test.go
- twins_test.go
- fsutil.go
- switcher.go
- switcher_test.go
- transcripts.go
- transcripts_test.go
- selfupdate.go
- updater.go
- updater_test.go
- usage.go
- usage_test.go
- availability_test.go
- child.go
- concurrent_test.go
- countdown_test.go
- idleswap_test.go
- proctree.go
- proctree_test.go
- relaunch_test.go
- resumable_test.go
- retry_test.go
- skipswap_test.go
- slashcmd.go
- staleness_test.go
- start_other.go
- start_windows.go
- waitforreset_test.go
- wrapper.go
- wrapper_test.go
- cux.js
- .npmignore
- install.js
- LICENSE
- package.json
- README.md
- install.sh
- switch.md
- .gitattributes
- .gitignore
- go.mod
- go.sum
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
claude
설명 보기 ▼
claude
코드베이스를 이해하고 자연어 명령을 통해 더 빠르게 코딩할 수 있도록 도와주는 에이전트 기반 코딩 도구.
더 많은 정보: <https://code.claude.com/docs/en/cli-reference>.
claude prompt
프롬프트로 실행:
claude update
`claude`를 업데이트:
claude mcp list
지정된 MCP 서버 목록을 표시:
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:
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 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:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
flock
설명 보기 ▼
flock
쉘 스크립트에서 파일 잠금을 관리.
하나의 명령이 동시에 한 번만 실행되도록 보장하는데 사용 가능.
더 많은 정보: <https://manned.org/flock>.
flock {{path/to/lock.lock}} {{command}}
잠금을 획득할 수 있을 때까지 기다린 후, 파일 잠금을 사용하여 명령 실행:
flock {{[-n|--nonblock]}} {{path/to/lock.lock}} {{command}}
파일 잠금을 획득할 수 없으면, 즉시 종료 (종료 코드: 1):
flock {{[-n|--nonblock]}} {{[-E|--conflict-exit-code]}} {{123}} {{path/to/lock.lock}} {{command}}
파일 잠금을 획득할 수 없으면, 지정한 종료 코드로 종료:
