码迷,mamicode.com
首页 > 系统相关 > 详细

Shell编程实例

时间:2020-06-08 20:52:25      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:mon   ash   字符   span   www   编程   双引号   log   test   

参考文档:https://www.cnblogs.com/xuziyu/p/10687781.html

实例1:输出字符串

脚本test01.sh

#!/bin/bash
#打印输出
echo "#######################################"
echo "This is the first shell script!"
echo "#######################################"  

 

执行命令:

sh test01.sh

 

执行结果:

#######################################
This is the first shell script!
#######################################

  

实例2:变量引用

1)变量定义等号前后不能有空格;

2)使用单引号、双引号、无引号定义的变量,是静态变量;

3)使用反引号引用的变量为命令,是动态变量;

4)引用变量用${},变量放在大括号里面;

脚本:test02.sh

#!/bin/bash
#变量引用
echo "######################################################################"
name=wzl
date=`date`
echo "my name is ${name}"
echo "now time is ${date}"
echo "######################################################################"

  

执行命令;

sh test02.sh

  

执行结果:

######################################################################
my name is wzl
now time is Mon Jun  8 20:24:51 CST 2020
######################################################################

  

 

Shell编程实例

标签:mon   ash   字符   span   www   编程   双引号   log   test   

原文地址:https://www.cnblogs.com/wzl0916/p/13068230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!