#!/bin/bash
#testing the read command
echo -n "enter your key: "
read key
echo "hello $key ,welcome to my program."
Linux提示用户输入并获取输入信息
最新推荐文章于 2025-04-03 11:10:50 发布
#!/bin/bash
#testing the read command
echo -n "enter your key: "
read key
echo "hello $key ,welcome to my program."