Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu install zsh

#The sudo apt-get update command is used to download package 
#information from all configured sources 
#So when you run update command, it downloads the package 
#information from the Internet. It is useful to get info on 
#an updated version of packages or their dependencies.

sudo apt-get update
sudo apt-get install zsh

#Now that ZSH shell is installed, you can check whether ZSH 
#is working with the following command:
zsh --version
Comment

install oh my zsh ubuntu

Install zsh:
	- On Linux:
    	sudo apt-get install zsh
	- On MacOS (should already been installed):
    	brew install zsh

Install oh-my-zsh via curl:
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Install oh-my-zsh via wget:
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"

Themes:
https://github.com/ohmyzsh/ohmyzsh/wiki/Themes

Plugins:
https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins
Comment

install Oh My ZSH linux

sudo apt-get install zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Comment

install Oh My ZSH linux

sudo apt-get install zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Comment

zsh ubuntu

autoload -U promptinit
promptinit
Comment

PREVIOUS NEXT
Code Example
Shell :: git ~ vs ^ 
Shell :: npm install composition apiu 
Shell :: du linux several directories 
Shell :: install font ubuntu 
Shell :: push to multiple remotes git 
Shell :: git fetch remote branch 
Shell :: push all branches to remote 
Shell :: install adonis cli 
Shell :: setting sublimeREPL in linux 
Shell :: force pull in git 
Shell :: hwo to add custom commands in bash 
Shell :: docker run name 
Shell :: run dotnet core app 
Shell :: install alacritty ubuntu 
Shell :: docker run in the background 
Shell :: git push all tags 
Shell :: git clone different name 
Shell :: xamp start ubuntu 
Shell :: restart ubuntu 18.04 server 
Shell :: ecto migration 
Shell :: drush config import single file 
Shell :: video editor linux 
Shell :: how to show extensions on files win 11 
Shell :: docker-compose update code without using build again 
Shell :: conda install notebook 
Shell :: repair drive windows 
Shell :: install openvino ubuntu 
Shell :: delete folder terminal mac 
Shell :: create symbolic link linux 
Shell :: install opencv 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =