while 循环中使用read

#!/bin/bash
while read line ; do
ehco  $line
done < file

Add a Comment