diff options
Diffstat (limited to 'content/blog/2022-07-31-bash-it.md')
-rw-r--r-- | content/blog/2022-07-31-bash-it.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/content/blog/2022-07-31-bash-it.md b/content/blog/2022-07-31-bash-it.md index e5d0b42..e0b1f36 100644 --- a/content/blog/2022-07-31-bash-it.md +++ b/content/blog/2022-07-31-bash-it.md @@ -8,19 +8,19 @@ draft = false # Bash For those who are not familiar, -[Bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell)) is a Unix shell that is -used as the default login shell for most Linux distributions. This shell and +[Bash](<https://en.wikipedia.org/wiki/Bash_(Unix_shell)>) is a Unix shell that +is used as the default login shell for most Linux distributions. This shell and command processor should be familiar if you've used Linux (or older version of macOS) before. However, bash is not the only option. There are numerous other shells that exist. Here are some popular examples: -- [zsh](https://en.wikipedia.org/wiki/Z_shell) -- [fish](https://en.wikipedia.org/wiki/Fish_(Unix_shell)) -- [oksh](https://github.com/ibara/oksh) -- [mksh](https://wiki.gentoo.org/wiki/Mksh) -- [dash](https://en.wikipedia.org/wiki/Debian_Almquist_shell) +- [zsh](https://en.wikipedia.org/wiki/Z_shell) +- [fish](<https://en.wikipedia.org/wiki/Fish_(Unix_shell)>) +- [oksh](https://github.com/ibara/oksh) +- [mksh](https://wiki.gentoo.org/wiki/Mksh) +- [dash](https://en.wikipedia.org/wiki/Debian_Almquist_shell) While each shell has its differences, bash is POSIX compliant and the default for many Linux users. Because of this, I am going to explore a program called @@ -110,7 +110,7 @@ This will provide you a list that looks like the following text block. Within this screen, you will be able to see all available options and which ones are currently enabled. -``` txt +```txt Alias Enabled? Description ag [ ] the silver searcher (ag) aliases ansible [ ] ansible abbreviations @@ -148,7 +148,7 @@ bash-it show plugins You will see the following output showing enabled and disabled plugins: -``` txt +```txt Plugin Enabled? Description alias-completion [ ] autojump [ ] Autojump configuration, see https://github.com/wting/autojump for more details |