shell 编程
作者:互联网
shell 编程
变量赋值
-
变量和赋值之间用=连接,不能有空格
-
shell编程默认赋值都是字符串,所以单引号 双引号 或者直接字符串都一样
[root@127 download]# name=test [root@127 download]# name1="test1" [root@127 download]# name2='test2' [root@127 download]# echo $name1 test1 [root@127 download]# echo $name2 test2 [root@127 download]# echo $name test [root@127 download]#
-
单引号变量,不识别特殊语法,双引号变量,可以识别特殊语法,反引号中的命令结果会被保留下来
[root@127 download]# name=test [root@127 download]# name1="test1" [root@127 download]# name2='test2' # 双引号可以识别$变量名的用法,单引号不行 [root@127 download]# echo "$name1" test1 [root@127 download]# echo "$name" test [root@127 download]# echo "$name2" test2 [root@127 download]# echo '$name2' $name2 [root@127 download]# echo '$name1' $name1 [root@127 download]# echo '$name' $name # 反引号 [root@127 download]# test=`ls -ll` [root@127 download]# echo $test total 82644 drwxr-xr-x 17 501 501 4096 Mar 11 15:52 Python-3.6.12 -rw-r--r-- 1 root root 84623360 Aug 15 2020 Python-3.6.12.tar
环境变量设置
环境变量一般指用export内置命令导出的变量,用于定义shell的运行环境
- 用户个人配置文件 ~/.bash_profile, ~/.bashrc 远程登陆用户特有文件
- 全局配置文件/etc/profile /etc/bashrc,且系统建议最好创建在/etc/profile.d/而不是直接修改主文件,全局配置文件,影响所有登陆系统的用户
标签:shell,name,编程,echo,name2,127,download,root 来源: https://www.cnblogs.com/Young-shi/p/16093347.html