awk -f linearizefasta.awk < input.fa
or
awk '/^>/ {printf("%s%s\t",(N>0?"\n":""),$0);N++;next;} {printf("%s",$0);} END {printf("\n");}' < input.fa
tr "\t" "\n" < linearized.tsv
if you know your fasta header have a length < 60
tr "\t" "\n" < linearized.tsv | fold -w 60
Your example has no Ns, which is the exact opposite of what you say you want.
Are the sequences always on a single line?
You mean, you want to exclude the sequences with Ns?
Note, this only work if you don't have multi-line fasta