bashy

(★ 10)

bashy handles bash configuration for you

파일 탐색기

  • .editorconfig
  • .gitignore
  • .includes
  • .luacheckrc
  • .rumdl.toml
  • .shellcheckrc
  • CLAUDE.md
  • LICENSE
  • README.md
  • rsconstruct.toml

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

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 rev-parse

설명 보기 ▼

Display metadata related to revisions.

git rev-parse {{branch_name}}

Get the commit hash of a branch:

git rev-parse --abbrev-ref {{HEAD}}

Get the current branch name:

git rev-parse --show-toplevel

Get the absolute path to the root directory:

🔍

git

설명 보기 ▼

분산 버전 관리 시스템.
`commit`, `add`, `branch`, `checkout`, `push` 등의 특정 하위 명령어는 고유의 문서가 따로 있습니다.
더 많은 정보: <https://git-scm.com/docs/git>.

git init

하위 명령어 실행:

git clone {{https://example.com/repo.git}}

특정 레파지토리 위치에서 Git 하위 명령어 실행:

git status

주어진 설정으로 Git 하위 명령어 실행:

🔍

starship init

설명 보기 ▼

Print shell integration code for starship.

starship init {{bash|elvish|fish|ion|powershell|tcsh|zsh}}

Print the starship integration code for the specified shell:

starship init {{bash}} >> {{~/.bashrc}}

Append the `starship` integration code to `~/.bashrc`:

starship init {{zsh}} >> {{~/.zshrc}}

Append the `starship` integration code to `~/.zshrc`:

🔍

then

설명 보기 ▼

This shell keyword is used in combination with `if` and `elif` to separate branches and branch conditions.

tldr if

View documentation for `if` command:

🔍

zoxide

설명 보기 ▼

가장 자주 사용되는 디렉터리를 추적.
순위 알고리즘을 사용하여 가장 적합한 경로로 이동.
더 많은 정보: <https://manned.org/zoxide>.

zoxide query string

이름에 "foo"가 포함된 가장 높은 순위의 디렉터리로 이동:

zoxide query string1 string2

이름에 "foo"와 "bar"가 차례로 포함된 가장 높은 순위의 디렉터리로 이동:

zoxide query {{[-i|--interactive]}}

대화형 디렉터리 검색 시작 (`fzf` 필요):

// repository documentation