mq-task
A task runner that executes code blocks in Markdown files based on section titles.
파일 탐색기
- ci.yml
- release.yml
- dependabot.yml
- demo.gif
- demo.tape
- logo.svg
- README.md
- install.sh
- config.rs
- error.rs
- lib.rs
- main.rs
- runner.rs
- tui.rs
- integration_test.rs
- .gitignore
- Cargo.lock
- Cargo.toml
- README.md
- sections.mq
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
dir
설명 보기 ▼
dir
파일 목록을 출력.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus5000/sw/command/reference/fund/n5k-fund-cr/n5k-fund_cmds_d.html#dir>.
dir
현재 작업 디렉토리의 파일 목록 출력:
tldr ls
자세한 내용은 원본 명령을 참고하세요:
dir
현재 디렉토리의 내용 표시:
cargo install
설명 보기 ▼
cargo install
Build and install a Rust binary.
cargo install {{package}}@{{version}}
Install a package from <https://crates.io> (the version is optional - latest by default):
cargo install --git {{repo_url}}
Install a package from the specified Git repository:
cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}
Build from the specified branch/tag/commit when installing from a Git repository:
just
설명 보기 ▼
just
`just`는 동일한 이름을 가진 여러 명령을 참조할 수 있습니다.
just {{recipe}}
명령 실행기에 대한 문서 보기:
just
Start a REPL (interactive shell):
just --init
V8 JavaScript 런타임에 대한 문서 보기:
psql
설명 보기 ▼
psql
PostgreSQL 명령줄 클라이언트.
더 많은 정보: <https://www.postgresql.org/docs/current/app-psql.html>.
psql {{database}}
데이터베이스에 연결. 기본적으로, 현재 로그인한 사용자로 포트 5432를 사용하여 로컬 소켓에 연결:
psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{database}}
주어진 서버 호스트에서 주어진 포트로 주어진 사용자 명으로 데이터베이스에 연결, 비밀번호 입력은 생략:
psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{[-W|--password]}} {{database}}
데이터베이스에 연결; 사용자는 비밀번호를 입력해야 함:
redis-cli
설명 보기 ▼
redis-cli
Redis 서버에 연결합니다.
더 많은 정보: <https://redis.io/docs/latest/develop/>.
redis-cli
로컬 서버에 연결:
redis-cli -h {{host}}
기본 포트(6379)로 원격 서버에 연결:
redis-cli -h {{host}} -p {{port}}
포트 번호를 지정하여 원격 서버에 연결:
