Untitled

 avatar
unknown
plain_text
3 years ago
199 B
3
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...