আমার কাছে এটি স্পষ্ট নয় যে আপনি সমস্যাগুলির মধ্যে চলেছেন, বা আপনার যদি কেবলমাত্র ওয়াকথ্রু দরকার?
আমি ধরে নিচ্ছি যে আপনার কাছে উইন্ডোজটিতে ইতিমধ্যে বাশ রয়েছে এমন বিন্দুটি সেট আপ হয়েছে যেখানে আপনি বাশ উইন্ডো খুলতে পারবেন। একবার এটি হয়ে গেলে, নিশ্চিত হয়ে নিন যে আপনি এটিকে চালিয়েছেন (সি: \ উইন্ডোজ \ সিস্টেম 32 \ bash.exe তে পাওয়া গেছে) অ্যাডমিনিস্ট্রেটর সুবিধাগুলি সহ (ফাইল এক্সপ্লোরারে ডান-ক্লিক বাশ এবং প্রশাসক হিসাবে রান নির্বাচন করুন ; আপনি একটি শর্টকাটও তৈরি করতে পারেন যা আপনি আপনার টাস্কবারে পিন করতে পারেন যা প্রতিবার প্রশাসক হিসাবে ব্যাশ চালাবে)।
এটি শেষ হয়ে গেলে, আপনাকে কেবলমাত্র জানতে হবে যে আপনি যখন ইনস্টল করা হয়নি এমন কোনও প্রোগ্রাম চালানোর চেষ্টা করবেন, তখন ব্যাশ এইভাবে উত্তর দেবে:
~/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
যখনই আপনার কোনও ইনস্টল নেই এমন কোনও প্রোগ্রামের প্রয়োজন হয় তখনই (যেমন, ) করুন।
বাশ-ইট গিটহব পৃষ্ঠায় দেওয়া নির্দেশাবলী অনুসরণ করে আমার পক্ষে এইভাবে বাশকে ব্যবহার করার জন্য কাজ করেছে:
~/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 ✓| → ~