#!/bin/bash cat $filename | # Supply input from a file. while read line # As long as there is another line to read ... do echo $line done
No comments:
Post a Comment