概述
1.创建sehll脚本
一个shell脚本包含的内容
1)首行 #!/bin/bash
表示使用bash解释器
注意:第一行的#特殊,表示定义,其他行则表示注释
2)注释
除第一行外的其他行,行首加上#即可
3)内容
创建一个shell脚本
1)创建一个shell文件
方法很多:
touch
vi/vim
echo "" > 文件名
2)编辑内容:
#!/bin/bash
#this is my first sehll script
echo "hello shell"
echo "hello scala"
3)运行:会发现没有执行文件的权限
[root@VM_0_16_centos es]# ll
total 28
-rw-r--r-- 1 root root 81 May 10 14:14 firstshell
-rw-r--r-- 1 es root 136 May 9 09:28 hello2.txt.tar.gz
-rwxrwxrwx 1 es es 156 May 9 12:38 hello.txt
-rw-rw-r-- 1 es es 136 May 8 19:21 hello.txt.tar.gz
-rw-rw-r-- 1 es es 182 May 8 19:12 hello.txt.zip
drwxr-xr-x 2 es es 4096 May 9 09:32 temp
drwxr-xr-x 2 root root 4096 May 8 19:10 tody
[root@VM_0_16_centos es]# ./firstshell
bash: ./firstshell: Permission denied
[root@VM_0_16_centos es]# chmod +x firstshell
[root@VM_0_16_centos es]# ./firstshell
hello shell
hello scala
2.三种方式执行脚本:
1)使用相对路径或者绝对路径执行
./firstshell
2)bash firstshell
3)source firstshell
4). firstshell
[root@VM_0_16_centos es]# . firstshell
hello shell
hello scala
[root@VM_0_16_centos es]# bash firstshell
hello shell
hello scala
[root@VM_0_16_centos es]# source firstshell
hello shell
hello scala
这么多方式,有什么区别呢?
使用. firstshell会生成一个新的bash环境进行执行
使用./ bash . source这几种方法,会在当前的环境中执行。
例子:
[root@VM_0_16_centos es]# aa=123
[root@VM_0_16_centos es]# echo $aa
123
[root@VM_0_16_centos es]# echo "echo $aa" > firstshell
[root@VM_0_16_centos es]# cat firstshell
echo $aa
[root@VM_0_16_centos es]# echo "echo $aa" >> firstshell
[root@VM_0_16_centos es]# cat firstshell
echo $aa
echo $aa
[root@VM_0_16_centos es]# ./firstshell
[root@VM_0_16_centos es]# bash firstshell
[root@VM_0_16_centos es]# source firstshell
123
123
shell变量:
变量:是shell传递数据的一种方式,用来代表每个取值的符号名
shell变量设置规则
不能以数字开头
变量默认都是字符串类型
[root@VM_0_16_centos es]# num3=$num+$num2
[root@VM_0_16_centos es]# echo $num3
12+13
如果变量有空格,需要使用单双引号
[root@VM_0_16_centos es]# pro=pro fillll
-bash: fillll: command not found
[root@VM_0_16_centos es]# pro="pro fillll"
[root@VM_0_16_centos es]#
=号两边不能有空格
[root@VM_0_16_centos es]# lxx = 1
-bash: lxx: command not found
[root@VM_0_16_centos es]# lxx =1
-bash: lxx: command not found
3.分类
用户自定义变量
环境变量 $HOME,$SHELL,$PWD,$USER等
位置参数变量
预定义变量
使用set查看系统中所有的变量
1)用户自定义变量
[root@VM_0_16_centos es]# num2=123
[root@VM_0_16_centos es]# num3=234
2)变量调用,使用$xxxName 调用变量的值
3)将一个变量赋值给另一个变量
4)将运算的结果赋值给变量
[root@VM_0_16_centos es]# num4=`ll`
[root@VM_0_16_centos es]# echo $num4
total 28 -rwxr-xr-x 1 root root 18 May 10 14:44 firstshell -rw-r--r-- 1 es root 136 May 9 09:28 hello2.txt.tar.gz -rwxrwxrwx 1 es es 156 May 9 12:38 hello.txt -rw-rw-r-- 1 es es 136May 8 19:21 hello.txt.tar.gz -rw-rw-r-- 1 es es 182 May 8 19:12 hello.txt.zip drwxr-xr-x 2es es 4096 May 9 09:32 temp drwxr-xr-x 2 root root 4096 May 8 19:10 tody
使用$()
[root@VM_0_16_centos home]# num5=$(ll /home/es)
[root@VM_0_16_centos home]# echo $num5
total 28 -rwxr-xr-x 1 root root 18 May 10 14:44 firstshell -rw-r--r-- 1 es root 136 May 9 09:28 hello2.txt.tar.gz -rwxrwxrwx 1 es es 156 May 9 12:38 hello.txt -rw-rw-r-- 1 es es 136May 8 19:21 hello.txt.tar.gz -rw-rw-r-- 1 es es 182 May 8 19:12 hello.txt.zip drwxr-xr-x 2es es 4096 May 9 09:32 temp drwxr-xr-x 2 root root 4096 May 8 19:10 tody
[root@VM_0_16_centos home]#
[root@VM_0_16_centos home]# num6=$((4+5))
[root@VM_0_16_centos home]# echo $num6
9
[root@VM_0_16_centos home]#
拼接
[root@VM_0_16_centos home]# str1=123.123.123
[root@VM_0_16_centos home]# str2=root@$str1
[root@VM_0_16_centos home]# echo $str2
root@123.123.123
[root@VM_0_16_centos home]# str3=root@${str1}
[root@VM_0_16_centos home]# echo $str3
root@123.123.123
[root@VM_0_16_centos home]# str4=root@"$str1"
[root@VM_0_16_centos home]# echo str4
str4[root@VM_0_16_centos home]# echo $str4root@123.123.123[root@VM_0_16_centos home]#
转义使用''单引号
[root@VM_0_16_centos home]# str5=root@'$str1'
[root@VM_0_16_centos home]# echo $str5
root@$str1
[root@VM_0_16_centos home]#
列出所有的变量
set命令
删除变量
unset
但是,有一种变量无法使用unset删除
readonly变量:
[root@VM_0_16_centos home]# readonly rnum=123
[root@VM_0_16_centos home]# unset rnum
-bash: unset: rnum: cannot unset: readonly variable
[root@VM_0_16_centos home]#
用户自定义的变量,作用域只在当前的shell中,如果重启那么就失效。
环境变量
作用域:当前shell及子shell
最后
以上就是孝顺往事为你收集整理的Shell编程-创建和执行的全部内容,希望文章能够帮你解决Shell编程-创建和执行所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复