OUTPUT BUFFER:
#!/usr/bin/tclsh source /home/moumou/ordali/src/LesProcsDeGscope.tcl set Laa [split "ACDEFGHIKLMNPQRSTVWY" ""] set i 0 foreach a $Laa { foreach b $Laa { set n "seq_$a$a$b$b" if {! ($i % 2)} { set mot "$a$a$b$b...." } else { set mot "....$a$a$b$b" } set s [string repeat $mot 200] lappend tmp ">$n" $s incr i } } catch {file delete Test_AAAA.tfa} set o [open Test_AAAA.tfa w] puts $o [join $tmp \n] close $o exit