linux 通过键盘输入一批字符串 对输入的字符串进行测试,判断是否为文...
发布网友
发布时间:2022-05-01 18:04
我来回答
共1个回答
热心网友
时间:2023-11-14 15:35
#!/bin/bash
read -p "Enter an string:" str
if [ -f $str ];then
echo "yes"
else
echo "no"
fi
热心网友
时间:2023-10-23 14:37
#!/bin/bash
read -p "Enter an string:" str
if [ -f $str ];then
echo "yes"
else
echo "no"
fi