summarylogtreecommitdiffstats
path: root/aut2exe.sh
blob: 52d362801dd3f2b4c3e2c35a8cd6493c380c3dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
if test -z "$1"
then
  echo "aut2exe infile.au3 [/out outfile.exe] [/icon file.ico] [/comp 0-4] [/pack] [/nopack] [/ansi] [/unicode] [/console] [/gui]"
else
  if test -z "$2"
  then
    wine /usr/bin/Aut2exe.exe /in $* /nopack
	else
		wine /usr/bin/Aut2exe.exe /in $*
	fi
fi