Search found 1 match
- July 22nd, 2012, 8:56 am
- Forum: Feature Requests
- Topic: Unzip ISO file
- Replies: 20
- Views: 23766
Re: Unzip ISO file
Hey Guys, I've just taken my first steps in attempting to write a script that would extract items from an ISO archive after SABnzbd has downloaded it to my Synology, below is the code I'm using: #/bin/bash -x IF EXISTS %1\*.iso goto ISO goto END :ISO 7z x *.iso 7z x *.ISO :END echo Done. I've called...