#!/bin/bash # study shell scripts # 2020.03.04 auth:jet PATH=`echo $PATH` export PATH read -p "please input your first name:" first_name read -p "please input your second name:" second_name echo -e "\n your full name is: $first_name$second_name"
原文:https://www.cnblogs.com/wangzengyi/p/12416368.html