Untitled
unknown
plain_text
4 years ago
199 B
5
Indexable
while read line
do
if [[ ${line:0:1} == '>' ]]
then
outfile=${line#>}.temp
echo $line > $outfile
else
echo $line >> $outfile
fi
done < glimmer.1.tmp
Editor is loading...