帮助!我试图确定以下shell脚本的作用:
#!/bin/sh
echo "Enter file name: \c"
read FILE
if [ $FILE = "example.txt" ]
then i=1
while [ $i -le 15 ]
do
cp example.txt example$i.txt
i=`expr $i + 1`
done
else
echo "ERROR"
fi
你能帮忙吗?
答案 0 :(得分:1)
这个程序显然是:
example.txt
,则制作15个副本,如example1.txt
,example2.txt
等。答案 1 :(得分:0)
用户输入文件名 程序检查它是否等于example.txt 如果是,那么它会创建15份副本 如果否,则显示ERROR