I have used the following command for dmg file attach and detech
hdiutil attach installer.dmg
hdiutil detach installer.dmg
in the dmg file it contains test.app GUI mode installation, i can drag the test.app to application location
What i need is when i double-click the script, dmg containing the app should install automatically to
application location in mac os x after that terminal window should automatically closed
Thanks in advance for your answers
well, a shell script like the following should do the job:
install_app.sh
and you can run it that way:
be aware that I'm doing no argument checking in that little script, and that any existing app with the same name will get overwritten.
HTH