官术网_书友最值得收藏!

Understanding variables

Let's learn about creating variables in a shell.

Declaring variables in Linux is very easy. We just need to use the variable name and initialize it with the required content.

$ person="Ganesh Naik"

To get the content of the variable, we need to add the prefix $ before the variable, for example:

 $ echo person    
person $ echo $person Ganesh Naik

The unset command can be used to delete the declared variable:

$ a=20$ echo $a$ unset a

The unset command will clear or remove the variable from the shell environment as well.

Here, the set command will show all variables declared in the shell:

$ person="Ganesh Naik"$ echo $person$ set

Here, using the declare command with the -x option will make it an environmental or global variable. We will find out more about environmental variables in the next section.

$ declare -x variable=value

Here, the env command will display all environmental variables:

$ env

Whenever we declare a variable, that variable will be available in the current Terminal or shell. This variable will not be available to any other Terminal or shell:

variable=value

Let's write a shell script, as follows:

#!/bin/bash 
# This script clears the window, greets the user, 
# and displays the current date and time. 
 
clear                                   # Clear the window 
echo "SCRIPT BEGINS" 
echo "Hello $LOGNAME!"             # Greet the user 
echo 
 
echo "Today's date and time:" 
date                           # Display current date and time 
echo                 # Will print empty line 
 
my_num=50 
my_day="Sunday" 
 
echo "The value of my_num is $my_num" 
echo "The value of my_day is $my_day" 
echo 
 
echo "SCRIPT FINISHED!!" 
echo

Let's see the effect of $, "", '' on variable behavior:

#!/bin/bash 
 
planet="Earth" 
 
echo $planet 
echo "$planet" 
echo '$planet' 
echo $planet 
 
exit 0

The output is as follows:

Earth
Earth
$planet
$planet

From the preceding script's execution, we can observe that $variable and "$ variable" can be used to display the content of the variable. But if we use '$variable' or $variable, then the special functionality of the $ symbol is not available. The $ symbol is used as a simple text character instead of utilizing its special functionality of getting the variable's content.

主站蜘蛛池模板: 长汀县| 加查县| 黄龙县| 镇赉县| 灵台县| 青海省| 昭平县| 资溪县| 运城市| 会理县| 兴山县| 台山市| 无为县| 长武县| 松阳县| 诸城市| 马尔康县| 呼玛县| 马山县| 石渠县| 正宁县| 安丘市| 米林县| 长白| 将乐县| 越西县| 南充市| 凤凰县| 祥云县| 正宁县| 安吉县| 寻乌县| 牡丹江市| 高阳县| 兴化市| 兴城市| 宝清县| 博客| 延庆县| 蒲城县| 合川市|