有人可以在这里协助我的脚本吗,有新鲜眼光的人,已经做了一段时间了。所以:在脚本结束时,我试图启用条件,即如果用户输入单个字母作为输入脚本终止/退出并带有“退出”消息:
#!/bin/bash
echo 'Enter file names (wild cards OK)'
read files
for input_source in $files ; do
if test -f "$input_source" ; then
sort $input_source | uniq -c | head -10
elif "$input_source" = [a-z] ; then
exit
echo 'Exit'
fi
done