我有一个无法完成此脚本的问题。这是有效的脚本的一部分。这也是一个 linux bash 脚本。
echo -n "Please enter file "
read file
if [ -f $file ]
then
echo "$file found."
else
echo "$file not found."
fi
使用“for”循环编写一个脚本,该循环打印文件的每个单词,每个单词前后都带有 3 个星号 (*)。该脚本应提示用户输入文件名,并且必须验证文件是否存在以及该文件是否为常规文本文件。
提示:for
在循环中使用 cat、read 和 file 命令以及 if 语句。