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.
exec and multiple command line arguments (took me weeks to find solution):
set cmd "/path/to/your/command.sh"
set my_arg_1 "first"
set my_arg_2 "second"
# solution:
set runcmd [list exec $cmd $my_arg_1 $my_arg_2]
if {[catch $runcmd res]} {
error "Failed to run command $runcmd: $res"
}
puts "result is: $res"