Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "User:XiX/Bash"
From NetSec
< User:XiX
(Created page with "'''Bash''', which stands for '''B'''ourne-'''A'''gain '''SH'''ell, is one of the most popular 'shells' today. 'Shells' are command-line interpreters that process user input, and ...") |
(No difference)
|
Revision as of 17:57, 21 May 2012
Bash, which stands for Bourne-Again SHell, is one of the most popular 'shells' today. 'Shells' are command-line interpreters that process user input, and they are arguably the single most powerful tool at your disposal while operating a Linux platform. Understanding Bash, or any shell for that matter, is therefore highly recommended for both efficiency benefits and your understanding of the Linux platform itself. Before we begin, it's important for you to recognize that unlike MS-DOS, Bash is case-sensitive. That is, 'ID' will be interpreted differently than 'id', so ensure that you are using the correct case before executing a command. To start with, You can find it on most modern OS's, like so:
Description | Command | Example output |
Find what shell you are actively using | echo $SHELL | /bin/bash |
The shell is arguably the most powerful tool Linux provides, The key to understanding Bash is experimentation, so