Linux基础|shell ——从用户端输入一个字符串,然后输出

实验目的:从用户端输入一个字符串,然后输出

实验步骤:
1.创建vim abc.sh
2.编辑代码如下

#!/bin/bash                         //  shell类型
#a simple shell script example      //注释
#a function
welcome()               // 函数
{
echo "Enter Your name:"
read name          //读取来自键盘输入的变量
echo "welcome $name"
}
echo "Linux world..."  //主过程
welcome

实验结果:
Linux基础|shell ——从用户端输入一个字符串,然后输出_第1张图片
实验注意事项:
1.做实验时要注意文件放的位置
2.也可以使用sudo nano 文件名.sh,然后使用sh 文件名.sh 运行

你可能感兴趣的:(Linux,shell,linux)