BASHing Your Way Through Linux


What Is A Shell?
Why Do I Care About The Shell?
Shell History
Setting The Default Editor
Customizing The Workspace
Shell Scripts
BASHing Through The Directories

What Is A Shell?

Paraphrased from Learning the Korn Shell by Bill Rosenblatt
A shell is any program that takes input from the user, translates it into instructions that the operating system can understand, and conveys the operating system's output back to the user.

Why Do I Care About The Shell?

Shell History

Common Shells Free Versions

Setting The Default Editor

Customizing The Workspace

Shell Scripts

	#!/bin/bash
	while
	true
	do
	cat somefile > /dev/null
	echo .
	done

BASHing Through The Directories