12 lines
170 B
Bash
12 lines
170 B
Bash
|
#!/bin/bash
|
||
|
# reading data from a file
|
||
|
|
||
|
count=1
|
||
|
cat test | while read line
|
||
|
do
|
||
|
echo "Line $count: $line"
|
||
|
count=$[ $count + 1 ]
|
||
|
done
|
||
|
echo "Finished processing the file"
|
||
|
|