用重定向显示文件内容

#!/bin/bash # 显示文件中的内容 FILE=$1 # read $FILE using the file descriptors exec 3<&0 # fd 3的作用是为fd 1暂存以便恢复 exec 0<$FILE # 将FILE的fd值赋给standard input,下面的while将会从FILE读取,instead of从standard input读取 while read line do # use $line variable to process line echo $line done exec 0<&3

 

你可能感兴趣的:(重定向)