acer@ubuntu:/tmp$ cat hello.data
hello
how are you
wonderful
great awesome
May be might be
acer@ubuntu:/tmp$
acer@ubuntu:/tmp$ cat hh.sh
#!/bin/bash
while read line ;do
echo $line ;
done < /tmp/hello.data
acer@ubuntu:/tmp$
acer@ubuntu:/tmp$ ./hh.sh
hello
how are you
wonderful
great awesome
May be might be
No comments:
Post a Comment