Zsh: Difference between revisions
Jump to navigation
Jump to search
(Created page with "==References== {| | valign="top" | * [https://phoenixnap.com/kb/install-zsh-ubuntu Zsh » Ubuntu] * [https://www.zsh.org/ Zsh] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | * AwesomeWM * Neovim * PyEnv * TMux * 7Zip * Zip * Tar | valign="top" | | valign="top" | |}") |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<syntaxhighlight lang="bash"> | |||
cat << EXE | sudo bash | |||
apt-get update;echo | |||
apt list -a --upgradable | |||
apt-get install -y zsh | |||
chsh -s $(which zsh) | |||
zsh --version | |||
EXE | |||
</syntaxhighlight> | |||
==References== | ==References== | ||
{| | {| | ||
| valign="top" | | | valign="top" | | ||
* [https://www.drupaldump.com/right-way-migrate-your-bashprofile-zsh Zsh » Migrate from bash_profile] | |||
* [https://shuheikagawa.com/blog/2019/10/08/migrating-from-bash-to-zsh/ Zsh » Migrating from bash] | |||
* [https://phoenixnap.com/kb/install-zsh-ubuntu Zsh » Ubuntu] | * [https://phoenixnap.com/kb/install-zsh-ubuntu Zsh » Ubuntu] | ||
* [https://www.zsh.org/ Zsh] | * [https://www.zsh.org/ Zsh] | ||
Line 18: | Line 30: | ||
* [[PyEnv]] | * [[PyEnv]] | ||
* [[TMux]] | * [[TMux]] | ||
* [[Bash]] | |||
* [[7Zip]] | * [[7Zip]] | ||
* [[Zip]] | * [[Zip]] |
Latest revision as of 06:21, 28 November 2024
cat << EXE | sudo bash
apt-get update;echo
apt list -a --upgradable
apt-get install -y zsh
chsh -s $(which zsh)
zsh --version
EXE
References
| ||