Some­times it is a prob­lem to open many seqe­unces in one work­sheet to analyse them. For exam­lple you have sequence data and try to open them in one work­sheet in Bioedit. You can copy every sequence by copy&paste in one file or one work­sheet or you can use a lit­tle helper who will do it for you. Here is one very sim­ple helper writ­ten in Perl.
Basi­caly you invoke it with an argu­ment defin­ing a file pat­tern, *.seq defines all files end­ing on .seq. The files should be text files. The script now reads the file con­tents and put the con­tents together in a file called sequences.fasta.
Let say you have the files 1.seq and 2.seq in one directory:

1.seq:

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
cccccccccccccccccccccccccccccccccccccc

2.seq:

ttttttttttttttttttttttttttttttttttttt
ggggggggggggggggggggggggggggggggggggg

Invok­ing appendseq.pl with *.seq as argu­ment will pro­duce the file sequences.fasta containing:

>1.seq
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
cccccccccccccccccccccccccccccccccccccc

>2.seq
ttttttttttttttttttttttttttttttttttttt
ggggggggggggggggggggggggggggggggggggg

The orig­i­nal file­names are at the begin­ning of the sequence behind > and define the name of the sequnce. The result­ing file should be FASTA compatible.

You can down­load appendseq.pl here.