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

zsh ubuntu

autoload -U promptinit
promptinit
Comment

PREVIOUS NEXT
Code Example
Shell :: install jetstream 
Shell :: how to configure the smtp server in ubuntu 
Shell :: bash how to create directories in all subdirectories 
Shell :: how to create ssh key for github 
Shell :: grep only number from line 
Shell :: bitbucket Permission denied (publickey). fatal: Could not read from remote repository. 
Shell :: [ERROR] An error occurred while running subprocess capacitor. 
Shell :: merge csv files powershell 
Shell :: github actions run shell script 
Shell :: command to change user username 
Shell :: substring if statement variable shell script 
Shell :: how to update a local git repository 
Shell :: git cache credentials 
Shell :: show saved network connections linux 
Shell :: lintcode 
Shell :: homestead change php version 
Shell :: cp -r copy linux directory or file 
Shell :: rerun code from history 
Shell :: libqtgui4 : Depends: libpng12-0 (= 1.2.13-4) but it is not installed 
Shell :: linux log serial to binary file 
Php :: ajax add edit delete records in database using php 
Php :: larave whereNotNull 
Php :: php string to lowercase 
Php :: php disable errors 
Php :: auto generate password in php 
Php :: destroy or remove a session in laravel 
Php :: wp enqueue 
Php :: turn on php errors 
Php :: check if string is number or not php 
Php :: how to find datatype of a variable in php 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =