Zsh: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
cat << EXE | sudo bash
cat << EXE | sudo bash
Line 13: Line 12:
{|
{|
| 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://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]

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