Hello all,
I am trying to make my Starcraft work via a shell script.I have an iso image of the expansion Brood War and i want to do the following:
1. Mount the broodwar iso image to, let's say, /media/iso
2.Starting the game with wine
3.After exiting starcraft, unmount the broodwar image
My script looks like this;
#!/bin/bash
# My Starcraft Script
cd /home/user/Starcraft
sudo -p xxxxxxxxx mount -o loop broodwar.iso /media/iso
wine /home/user/games/Starcraft/starcraft.exe
My particular problem is the implementation of th third step.If someone knows how to do it, please help me, because I'm still new to shell scripting.
With kind regards,
Rado