Windows 10 bash 시스템에 bash-it을 설치하는 방법


0

나는 자식과 함께 많이 일하고 배쉬 잇 특히 지점과 작업 할 때 훌륭한 시각화 도구입니다. Windows 10 bash 환경에서 "bash-it"(또는 유사한 프로그램)을 설치하는 방법을 알고 싶습니다.

나는 그것에 대해 봤지만 대부분의 기사는 Mac에서 설정하는 방법에 관한 것입니다.

git 브랜치로 작업하는 것이 더 쉬워 지도록 설치하기를 바랬다.

bash-it 사용의 이점

Screenshot


설치 지침을 따랐을 때 어떤 일이 일어 났습니까?
DavidPostill

@DavidPostill 내가 언급 한 명령을 실행 한 후에는 아무 것도 바뀌지 않습니다. 내 bash 경험은 동일하게 유지됩니다. 그런 다음이 기사를 보았습니다. mandymadethis.com/pimp-your-commandline Mac의 경우 실현해야 할 일이있을 수 있습니다. 그래서 저는 여기에서 물었습니다. 누군가가 도움이 될 수있는 좋은 단계별 프로세스를 작성할 수 있기를 바랍니다.
iSaumya

설치 지침을 실행할 때 상태 또는 오류 메시지가 있습니까?
8bittree

@ 8bittree 내가 본 것이 아니다.
iSaumya

1
@iSaumya 내 대답보기 : 당신이 대답 한 것일 수 있습니까? y .bashrc를 유지하고 싶은지 물어 보셨습니까? 그렇다면 다시 시도하여 .bashrc를 옆으로 옮기고 변경 사항이 있는지 확인하십시오. 또한 관리자로 실행 중인지 확인하십시오.
Trey

답변:


2

문제가 발생했는지 또는 둘러보기가 필요한지는 분명하지 않습니다.

Windows 용 Bash가 Bash 창을 열 수있는 지점에 이미 설치되어 있다고 가정합니다. 일단 그렇게했다면, 관리자 권한으로 파일을 실행 시키십시오 (C : \ Windows \ System32 \ bash.exe에 있음). 파일 탐색기에서 bash를 마우스 오른쪽 단추로 클릭하고 관리자 권한으로 실행 ; 당신은 또한 관리자로 bash를 매번 실행할 작업 표시 줄에 고정 할 수있는 바로 가기를 만들 수 있습니다.

완료되면, 당신이 알아야 할 것은 설치되지 않은 프로그램을 실행하려고 할 때 bash가 다음과 같이 응답 할 것입니다 :

~/src$ attr
The program 'attr' is currently not installed. You can install it by typing:
sudo apt-get install attr

그냥 (예 : sudo apt-get install $whatever ) 설치되지 않은 프로그램이 필요할 때마다.

수행원 지시 사항 Bash-it GitHub 페이지에서 Bash를 사용하여 다음과 같이 작업했습니다.

~/src $ git clone https://github.com/Bash-it/bash-it.git
Cloning into 'bash-it'...
remote: Counting objects: 6339, done.
remote: Compressing objects: 100% (27/27), done.
remote: Total 6339 (delta 15), reused 6 (delta 6), pack-reused 6304
Receiving objects: 100% (6339/6339), 34.99 MiB | 13.00 MiB/s, done.
Resolving deltas: 100% (2867/2867), done.
Checking connectivity... done.
~/src $ cd bash-it/
trey@MYHOST:~/src/bash-it$ ./install.sh
Installing bash-it
Would you like to keep your .bashrc and append bash-it templates at the end? [y/N]
Your original .bashrc has been backed up to .bashrc.bak
Copied the template .bashrc into ~/.bashrc, edit this file to customize bash-it

Enabling sane defaults

Installation finished successfully! Enjoy bash-it!
To start using it, open a new tab or 'source /home/trey/.bashrc'.

To show the available aliases/completions/plugins, type one of the following:
  bash-it show aliases
  bash-it show completions
  bash-it show plugins

To avoid issues and to keep your shell lean, please enable only features you really want to use.
Enabling everything can lead to issues.
trey@MYHOST:~/src/bash-it$ source ~/.bashrc

 2016-09-28 13:05:47 ☆  MYHOST in ~/src/bash-it
± |master ✓| → bash-it show aliases
Alias               Enabled?  Description
ag                    [ ]     the silver searcher (ag) aliases
ansible               [ ]     ansible abbreviations
apt                   [ ]     Apt and dpkg aliases for Ubuntu and Debian distros.
atom                  [ ]     Atom.io editor abbreviations
bundler               [ ]     ruby bundler
clipboard             [ ]     pbcopy and pbpaste shortcuts to linux
curl                  [ ]     Curl aliases for convenience.
docker-compose        [ ]     docker-compose abbreviations
docker                [ ]     docker abbreviations
emacs                 [ ]     emacs editor
fuck                  [ ]
general               [x]     general aliases
git                   [ ]     common git abbreviations
gitsvn                [ ]     common git-svn abbreviations
heroku                [ ]     heroku task abbreviations
hg                    [ ]     mercurial abbreviations
homebrew-cask         [ ]     homebrew-cask abbreviations
homebrew              [ ]     homebrew abbreviations
jitsu                 [ ]     jitsu task abbreviations
laravel               [ ]     laravel artisan abbreviations
maven                 [ ]     maven abbreviations
npm                   [ ]     common npm abbreviations
osx                   [ ]     osx-specific aliases
phoenix               [ ]     phoenix abbreviations
rails                 [ ]     rails abbreviations
svn                   [ ]     common svn abbreviations
textmate              [ ]     textmate abbreviations
tmux                  [ ]     Tmux terminal multiplexer
todo                  [ ]     todo.txt-cli abbreviations
vagrant               [ ]     vagrant aliases
vim                   [ ]     vim abbreviations

to enable an alias, do:
$ bash-it enable alias  <alias name> [alias name]... -or- $ bash-it enable alias all

to disable an alias, do:
$ bash-it disable alias <alias name> [alias name]... -or- $ bash-it disable alias all

 2016-09-28 13:05:57 ☆  MYHOST in ~/src/bash-it
± |master ✓| → ~

귀하의 답변에 많은 감사드립니다. 성공적으로 설치했습니다.
iSaumya
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.