7 lines
60 B
Bash
7 lines
60 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
while read line
|
||
|
do
|
||
|
echo $line
|
||
|
done < asd.txt
|