This commit is contained in:
z_demo_z
2001-04-02 23:55:33 +00:00
parent 1fe183be02
commit 6f4518f94f
23 changed files with 651 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!CVSGUI1.0 --files --name "Files sample"
set selList [cvssel]
set selSize [llength $selList]
cvsout "Hello, this is a sample macro !\n"
cvsout "Total selected : " $selSize "\n"
for {set i 0} {$i < $selSize} {incr i} {
cvsout " -> " [lindex $selList $i] \n
}