Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]master #[/blue] cat zarchy.tcl
#!/usr/bin/tclsh
puts "The $argv0 script was calles with $argc arguments :"
for {set i 0} {$i<[llength $argv]} {incr i} {
puts " - $i : [lindex $argv $i]"
}
[blue]master #[/blue] zarchy.tcl wants some arguments
The ./zarchy.tcl script was calles with 3 arguments :
- 0 : wants
- 1 : some
- 2 : arguments