The shell is a program that accepts and interprets commands. Besides bash, Linux supports many other shell programs, such as ksh, zsh, csh, and fish. Each of these shells have some unique features that sets them apart from other shells. In this article, we shall see multiple methods you could use to change a user’s shell in Linux
How To Change Your Default Linux Shell
Learn multiple ways to change your default Linux shell to zsh, bash or fish etc
0
1916
SourceADojos GitHub Gist
Previous article
Next article
Tushar Sharmahttps://www.automationdojos.com
Hi! This is Tushar, the author of 'Automation Dojos'. A passionate IT professional with a big appetite for learning, I enjoy technical content creation and curation. Hope you are having a good time! Don't forget to subscribe and stay in touch. Wishing you happy learning!
RECOMMENDED
CronTab Basic Commands With Examples
Cron is a time-based job scheduler in Unix-like operating systems, which is used to automate repetitive tasks. It is...
Types of Linux Shell Sessions
(A) Login Shell A login shell is a shell where you login, either via the terminal or via SSH. If the user...
Recent Posts
RELATED POSTS
Types of Linux Shell Sessions
(A) Login Shell A login shell is a shell where you login, either via the terminal or via SSH. If the user first logs in into a...
CronTab Basic Commands With Examples
Cron is a time-based job scheduler in Unix-like operating systems, which is used to automate repetitive tasks. It is a daemon (a background process)...
Â
RECENT 'HOW-TO'
How To Install Oh-My-Posh On Windows PowerShell
Oh-My-Posh is a powerful custom prompt engine for any shell that has the ability to adjust the prompt string with a function or variable. It does not...
MORE ON CODEX
MORE IN THIS CATEGORY
How To Install Pacman For Git on Windows
The 'Git for Windows' by default does not come with MSYS2 package manager called 'Pacman' and hence it is a limited version or subset...
Concatenate Strings Using String.concat()
The String class has a method called concat. It accepts as parameter a String value and concatenates it with the current String. The following...
Format Decimal Numbers Using Locale
If you want to create a DecimalFormat instance for a specific Locale, create a NumberFormat and cast it to a DecimalFormat. The java.text.DecimalFormat class is...
How To Remove Duplicates From List in Java
Introduction A List is an interface in the Java collection framework which can be used to store a group of objects. A List is ordered...
CHECKOUT TUTORIALS
Java Tutorial #6 – Jump Statements
Introduction The break statement is used to stop further execution. It can be used either in a loop or within a switch statement. Break Statement The break...