The document provides an introduction to shell scripting basics in UNIX/Linux. It discusses what a shell and shell script are, introduces the popular bash shell, and covers running commands, variables, logic, and other shell scripting concepts. The key points covered include: - A shell is a program that takes commands and runs other programs. Popular shells include bash, csh, tcsh, and ksh. - A shell script is a text file containing shell commands that is executable. Creating and running a simple "Hello world" script is demonstrated. - Running commands, pipes, redirection, variables, logic, and flow control like if/else, for loops are explained. - Useful bash