脚本变量
oot@instance-fcw8qpye:~# echo $itcast
root@instance-fcw8qpye:~# itcast=nihao666
root@instance-fcw8qpye:~# echo $itcast
nihao666
root@instance-fcw8qpye:~# itcast='nihao777'
root@instance-fcw8qpye:~# echo $itcast
nihao777
root@instance-fcw8qpye:~# itcast="nihao888"
root@instance-fcw8qpye:~# echo $itcast
nihao888
root@instance-fcw8qpye:~# echo $itcast1
root@instance-fcw8qpye:~# itcast1=nihao 666
666: command not found
root@instance-fcw8qpye:~# echo $itcast1
root@instance-fcw8qpye:~# itcast1='nihao 666'
root@instance-fcw8qpye:~# echo $itcast1
nihao 666
root@instance-fcw8qpye:~# itcast1="nihao 777"
root@instance-fcw8qpye:~# echo $itcast1
nihao 777
root@instance-fcw8qpye:~# echo $itcast
nihao888
root@instance-fcw8qpye:~# echo itcast2
itcast2
root@instance-fcw8qpye:~# itcast2='dan-$itcast'
root@instance-fcw8qpye:~# echo itcast2
itcast2
root@instance-fcw8qpye:~# echo itcast3
itcast3
root@instance-fcw8qpye:~# echo $itcast3
root@instance-fcw8qpye:~# itcast3='dan-$itcast'
root@instance-fcw8qpye:~# echo $itcast3
dan-$itcast
root@instance-fcw8qpye:~# itcast2="shuang-$itcast"
root@instance-fcw8qpye:~# echo $itcast3
dan-$itcast
root@instance-fcw8qpye:~# echo $itcast3
dan-$itcast
root@instance-fcw8qpye:~#
root@instance-fcw8qpye:~# itcast3="shuang-$itcast"
root@instance-fcw8qpye:~# echo $itcast3
shuang-nihao888
root@instance-fcw8qpye:~# echo $dir
root@instance-fcw8qpye:~# dir=pwd
root@instance-fcw8qpye:~# echo $dir
/root
root@instance-fcw8qpye:~# pwd
/root
root@instance-fcw8qpye:~# echo $dir1
root@instance-fcw8qpye:~#
root@instance-fcw8qpye:~# dir1=$(pwd)
root@instance-fcw8qpye:~# echo $dir1
/root
root@instance-fcw8qpye:~#
root@instance-fcw8qpye:~# env | grep SHELL
SHELL=/bin/bash
root@instance-fcw8qpye:~# echo $ITCAST
root@instance-fcw8qpye:~# ITCAST=nihao
root@instance-fcw8qpye:~# echo $ITCAST
nihao
root@instance-fcw8qpye:~# env | grep ITCAST
root@instance-fcw8qpye:~# export ITCAST
root@instance-fcw8qpye:~# env | grep ITCAST
ITCAST=nihao
root@instance-fcw8qpye:~# ITCAST1=nihao7
root@instance-fcw8qpye:~# export ITCAST1
root@instance-fcw8qpye:~# env | grep ITCAST
ITCAST=nihao
ITCAST1=nihao7
root@instance-fcw8qpye:~# ITCAST2=nihao6
root@instance-fcw8qpye:~# export ITCAST2
root@instance-fcw8qpye:~# env | grep ITCAST
ITCAST=nihao
ITCAST2=nihao6
ITCAST1=nihao7
root@instance-fcw8qpye:~#
root@instance-fcw8qpye:~#
root@instance-fcw8qpye:~#
root@instance-fcw8qpye:~# clear
root@instance-fcw8qpye:~# echo $ITCAST
nihao
root@instance-fcw8qpye:~# echo "$ITCAST"
nihao
root@instance-fcw8qpye:~# echo ${ITCAST}
nihao
root@instance-fcw8qpye:~# echo "${ITCAST}"
nihao
root@instance-fcw8qpye:~# unset ITCAST
root@instance-fcw8qpye:~# unset ITCAST1
root@instance-fcw8qpye:~# unset ITCAST2
root@instance-fcw8qpye:~# env | grep ITCAST
root@instance-fcw8qpye:~# env | grep ITCAST
root@instance-fcw8qpye:~# env | grep ITCAST1
root@instance-fcw8qpye:~# env | grep ITCAST2
root@instance-fcw8qpye:~# echo itcast
itcast
root@instance-fcw8qpye:~# unset itcast
root@instance-fcw8qpye:~# echo itcast
itcast
root@instance-fcw8qpye:~# echo $itcast
root@instance-fcw8qpye:~# echo $itcast1
nihao 777
root@instance-fcw8qpye:~# unset itcast1
root@instance-fcw8qpye:~# unset itcast2
root@instance-fcw8qpye:~# echo itcast1
itcast1
root@instance-fcw8qpye:~# echo $itcast1
root@instance-fcw8qpye:~# echo $itcast2
root@instance-fcw8qpye:~# ls
hlw01.sh lalala1.sh nihao.sh
root@instance-fcw8qpye:~# bash nihao.sh
nihao
root@instance-fcw8qpye:~# vim get_name.sh
root@instance-fcw8qpye:~# bash get_name.sh
lalala
get_name.sh
root@instance-fcw8qpye:~# mv get_name.sh get_name01.sh
root@instance-fcw8qpye:~# bash get_name01.sh
lalala
get_name01.sh
root@instance-fcw8qpye:~# bash get_name01.sh
lalala
get_name01.sh
root@instance-fcw8qpye:~#

浙公网安备 33010602011771号