zmux
tmux-style PTY session multiplexer as a Zig package. Long-lived daemon owns sessions and PTY child processes; clients attach over UNIX-domain JSON-RPC.
파일 탐색기
- release.yml
- buffer.zig
- connect.zig
- daemon.zig
- foreground.zig
- main.zig
- mux.zig
- native.zig
- protocol.zig
- pty.zig
- rpc_line_reader.zig
- server.zig
- session_daemon.zig
- .gitignore
- build.zig
- build.zig.zon
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
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:
tmux
설명 보기 ▼
tmux
터미널 멀티플렉서.
tmux는 단일 단말기 창 또는 원격 터미널 세션 안에서 여러 세션을 사용할 수 있도록 도와줍니다.
관련 항목: `zellij`, `screen`.
더 많은 정보: <https://github.com/tmux/tmux>.
tmux
새 세션 시작:
tmux {{[new|new-session]}} -s {{name}}
이름있는 새 세션 시작:
tmux {{[ls|list-sessions]}}
세션 리스트 출력:
zig
설명 보기 ▼
zig
Zig 컴파일러 및 툴체인.
더 많은 정보: <https://ziglang.org/documentation/master/>.
zig build
현재 디렉토리의 프로젝트 컴파일:
zig build run
현재 디렉토리의 프로젝트 컴파일 및 실행:
zig init
`zig build` 애플리케이션 초기화:
