PhilC
Member
Registered: 21st Jan 06
Location: Lancs, UK
User status: Offline
|
Hi guys,
I need to write a script that will launch terminal, copy a driver from USB to usr\home, then install the driver.
I have all the commands I need to type it out, and it works. Just don't know how to make something I can just double click.
I need to install this driver on 200 laptops!
|
PhilC
Member
Registered: 21st Jan 06
Location: Lancs, UK
User status: Offline
|
#!/bin/sh
Done it.
|
willay
Moderator Organiser: South East, National Events Premium Member
Registered: 10th Nov 02
Location: Roydon, Essex
User status: Offline
|
or chmod +x filename to make it executable
|
PhilC
Member
Registered: 21st Jan 06
Location: Lancs, UK
User status: Offline
|
chmod 755 driverscript.sh
I think that made it work?
|