Linux Today: Linux News On Internet Time.
Search Linux Today
Linux News Sections:  Developer -  High Performance -  Infrastructure -  IT Management -  Security -  Storage -
Linux Today Navigation
LT Home
Contribute
Contribute
Link to Us
Linux Jobs

Partner Sites
JustLinux.com
Linux Planet
PHPBuilder
Technology Jobs

Top White Papers

More on LinuxToday


Bash Shell Variables an Introduction

Nov 11, 2010, 03:04 (0 Talkback[s])

[ Thanks to Andrew Weber for this link. ]

"Variables are symbolic names for memory in which you can assign values, as well as read the contents or manipulate the contents. Put in a simpler form, variables are a selection of information you save to be used again. Every variable has a value, the information you have assigned to that variable. Here is an example:

#!/bin/bash

PURPOSE=mail
echo $PURPOSE

Complete Story

Related Stories: