You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
249 B
15 lines
249 B
6 years ago
|
#
|
||
|
# $Id: mktransgif.tcl,v 1.1.1.1 2000/05/17 11:08:46 idiscovery Exp $
|
||
|
#
|
||
|
#!/usr/local/bin/tclsh
|
||
|
|
||
|
set dont(plusarm.gif) 1
|
||
|
set dont(minusarm.gif) 1
|
||
|
|
||
|
foreach file [glob *.gif] {
|
||
|
if ![info exists dont($file)] {
|
||
|
puts "giftool -1 -B $file"
|
||
|
}
|
||
|
}
|
||
|
|