#!/bin/bashread -p "请输入你的名字:" nameecho $name
#!/bin/bash 这里写你的shell文件的位置,如果是linux的bash就应该是这个read -p "Please input your name: " name 读入名字echo -e "\nYour full name is: $name 输出名字