Questions about this topic? Sign up to ask in the talk tab.

User:XiX/Bash

From NetSec
Jump to: navigation, search

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
Terminal

localhost:~ $ test!

The shell is arguably the most powerful tool Linux provides, The key to understanding Bash is experimentation, so