echo 로 txt파일출력

#!/bin/bash
cat [텍스파일명] | \
while read line
do
echo “$line”
done

Leave your Comment

Your email address will not be published. Required fields are marked *