Add upper limit arg to log-transform
[maxima.git] / archive / bin / make-exe
bloba6eb60e3e87fe5f5acc8a10beef8eadcdd1f8a92
1 #!/bin/sh
2 # comment \
3 exec tclsh8.0 "$0" "$@"
5 proc getFile { file } {
6 set f [open $file r]
7 fconfigure $f -translation binary
8 while { ![eof $f] } {
9 append data [read $f]
11 close $f
12 return $data
17 if { $argc < 1 } {
18 error "make-exe foo.exe"
21 set fi [open [lindex $argv 0] w]
22 fconfigure $fi -translation binary