1、启动bash shell
2、清屏
3、显示标题
4、请求用户输入他的名字
5、等待用户输入名字
6、显示一个问候信息“hello”
7、程序结束
1.#!/bin/bash
2.clear
3.echo "Welcom To My First Linux Program"
4.echo "Enter Your First Name:"
5.read response
6.echo "Hello.$response"
1、启动bash shell
2、清屏
3、显示标题
4、请求用户输入他的名字
5、等待用户输入名字
6、显示一个问候信息“hello”
7、程序结束
1.#!/bin/bash
2.clear
3.echo "Welcom To My First Linux Program"
4.echo "Enter Your First Name:"
5.read response
6.echo "Hello.$response"