Bash脚本允许用户非常有效地读取文件。下面的示例将展示如何使用shell脚本读取文件。首先,创建一个名为editors.txt的文件,其中包含以下内容。
- Vim
- Emacs
- ed
- nano
- Code
此脚本将输出上述5行中的每一行。
!/bin/bash
file='editors.txt'
while read line; do
echo $line
done < $file
Bash脚本允许用户非常有效地读取文件。下面的示例将展示如何使用shell脚本读取文件。首先,创建一个名为editors.txt的文件,其中包含以下内容。
file='editors.txt'
while read line; do
echo $line
done < $file