Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

set zsh as default shell

chsh -s /bin/zsh
Comment

set zsh as default ubuntu

# change shell to zsh
chsh -s $(which zsh)
Comment

set zsh as default shell

# Open vim or your favorite code editor
sudo vim ~/.bashrc

# Now we need to edit the file and add the following line to the end of the file remember to add a comment just to remember, what is that line of code task.
exec zsh

# It will execute the command every time you load the terminal and run your zsh shell.
Comment

set zsh as default linux

# open .bashrc file
nano ~/.bashrc

# add this line at the end of the file
exec zsh
Comment

PREVIOUS NEXT
Code Example
Shell :: IlluminateHttpExceptionsPostTooLargeException Ubuntu 
Shell :: bash script language check if item in array 
Shell :: how to uninstall a package installed using homebrew 
Shell :: get ip of raspberry pi 
Shell :: git reset hard for remote 
Shell :: .gitignore is not ignoring directories 
Shell :: get newest version of original in own fork 
Shell :: tar.gz files 
Shell :: windows service start 
Shell :: cudatoolkit installation 
Shell :: how to install winetricks 
Shell :: block comment bash 
Shell :: rename file in git 
Shell :: check wordpress version cli 
Shell :: git see local changes 
Shell :: how to install docker on Debian 10 
Shell :: get disk partitions linux 
Shell :: git change personal token to login and passowrd 
Shell :: bash sh: line [: too many arguments 
Shell :: sourcetree change commit message not pushed 
Shell :: remote origin already exists. 
Shell :: powershell check if software is installed 
Shell :: download aws cli linux 
Shell :: combine two document together lnux 
Shell :: docker remove exited containers 
Shell :: pm2 start remix app 
Shell :: git set head to commit 
Shell :: install ftp on ubuntu 
Shell :: git-clone command not found ubuntu 
Shell :: how to check if your linux Server Is Under DDoS Attack 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =