Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

command to install fish shell

sudo apt install fish
chsh -s /usr/bin/fish
# logout/login

# To switch back to bash
chsh -s /bin/bash
# logout/login
Comment

install node on fish shell

# Follow This to install nvm for fish-shell
fisher install jorgebucaran/nvm.fish ## This will install fish package manager Fisher
# Then install Nvm package made for fish shell https://github.com/jorgebucaran/nvm.fish
fisher install jorgebucaran/nvm.fish
# Then restart or write this
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"

## Install Node.js
nvm list-remote # to see all available node.js versions remotely
# Install particular Verson . You can install as many versions as you want as use one
nvm insall <version> ## example : nvm install 17.3.0
# use nvm list to list local installed versions and then use one version installed version
nvm use <version> ## example  : nvm use 17.3.0
# Now node.js is installed and using successfully
Comment

PREVIOUS NEXT
Code Example
Shell :: getcomposer.org download 
Shell :: uname 
Shell :: git merge branch into another branch 
Shell :: npm install on Termux 
Shell :: sed add newline 
Shell :: bash here document example 
Shell :: make vscode git mergetool 
Shell :: github deploy server 
Shell :: export docker image 
Shell :: git flow release 
Shell :: git lfs all files in folder 
Shell :: command used to install django cms 
Shell :: install gitflow 
Shell :: To exclude directory with particluar pattern : 
Shell :: zip: command not found bash 
Shell :: uninstall R 
Shell :: libuuid 
Shell :: pm2 how to make app start on boot 
Shell :: ls command in linux 
Shell :: xcode errSecInternalComponent 
Shell :: sed allow root login 
Shell :: install hg linux 
Shell :: list of commands & concepts you should master to be verbose with Unix systems: 
Shell :: noetic catkin tools install 
Shell :: ubuntu reset to default dash 
Shell :: bash variable substitution 
Shell :: amazon ec2 gnome install yum 
Shell :: How To Create Notification Using Batch Script 
Shell :: bash dynamic varibale 
Shell :: install imutils ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =