Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums

Go Back   Code Forums > Code Newbie > Submit Tutorials > Linux

Reply
 
LinkBack Thread Tools Display Modes
Old 08-31-2004, 08:25 AM   #1 (permalink)
rakesh
Registered User
 
rakesh's Avatar
 
Join Date: Aug 2004
Posts: 1
rakesh is on a distinguished road
What is a shell variable in UNIX Shell Script

This article is a follow up of my last article “How and where to start writing first Shell Script in UNIX”. It covers the shell variables, both User defined as well as system shell variable.

What is a variable?

A variable is a name associated with a value. It’s a string that can be used to represent and manipulate your data.

In UNIX shell script programming you need not declare a variable. You just assign a value to it. There are two types of variables:

1.User shell variables
2.System shell variables

User shell variables

To use a variable just initialize it, there is no need to declare it.

Myname=rakesh
Age=20

In the above two lines ‘Myname’ and ‘Age’ are two variables having ‘rakesh’ and ‘20’ as the value associated to them respectively.

Remember ‘20’ is a string not a numeric value and can’t be used for mathematical operations. I shall explain how to do mathematical operations in my follow-ups.

Declaring a Null String

A null string can be declared in any of the following three ways:

variable=
variable=””
variable=’’

Making a value Read-Only

I don’t want to change the value of my variable inside the UNIX shell script accidentally.

readonly name=rakesh

Now the value of ‘name’ can’t be changed in your UNIX shell script. The read-only value can’t be even unset. I shall explain unset in the meantime. To get a list of all read-only variables type this on the prompt string

readonly

What is a valid variable name?

I wonder what a valid variable name is! What variable name should be given for better understanding of there usage and the associated value?

Only digits, alphabets and underscore ( _ ) are allowed in defining a variable name. Variable names are case sensitive, so Age and age are two different variables in UNIX shell scripts.

What is unset?

Unset erases all the reference of the variable from shell’s memory. To erase the value of variable ‘age’ type on the prompt string

unset age

This way you can use the same variable again in the program by associating a different value to it. Though you need not flush the value of a variable before reusing it but it’s a good practice to do show before associating a value of different data type to it.

System shell variables

Those who are familiar with the DOS shell might know what happens when you type set on the command prompt. It gives you the list of all environment shell variables. The environment shell variables are also known as system or public shell variables. Try doing the same with your UNIX shell. Type

set

on your prompt string and eventually you will get list of all system shell variables.

There are few commonly used system shell variables are

HOME
MAIL
PATH
EXINIT
PS1
PS2
USER
SHELL
TERM

You can use these shell variables in your program.

How to print or use the value of the variable

Now please tell me how can I use these variables in my UNIX shell script.

In fact it’s very simple. All you need to do is to put a dollar ( $ ) before your variable name.

$varname

will give you the value ‘varname’ is holding. And to print the value type

echo $varname
rakesh is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
shell script for ftp Hrqls Linux / BSD / OS X 7 09-20-2002 03:14 AM


All times are GMT -8. The time now is 12:52 PM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8





Copyright © 2000-2008, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting