URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [tix/] [tools/] [tcltrim] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
#!/usr/local/bin/tclsh
foreach source $argv {
set target [file rootname $source].tt
set src [open $source RDONLY]
set tgt [open $target {RDWR CREAT TRUNC}]
while {[eof $src] == 0} {
set line [string trim [gets $src]]
if {$line == ""} {
continue
}
if {[string index $line 0] == "#"} {
continue
}
puts $tgt $line
}
close $src
close $tgt
}
Go to most recent revision | Compare with Previous | Blame | View Log