Thirteen Years of Service
Posts: 25
Threads: 2
RE: Hidden HD Ripping 11-30-2012, 12:39 PM
#2
Hmm, there was someday thread in finnish board about this, and if i remember correctly, there is some ways or even programs to do that. Sorry, i cant remember how to do it..
•
Thirteen Years of Service
Posts: 2
Threads: 1
RE: Hidden HD Ripping 12-01-2012, 04:40 AM
#3
Heys, thanx for the reply, will try to look up Finnish keywords, if you know Finnish language, any specific words you suggest to look for?
•
Thirteen Years of Service
Posts: 333
Threads: 24
RE: Hidden HD Ripping 12-02-2012, 10:07 PM
#4
if I had time (which I unfortunately don't), I'd code it for you as it's pretty simple. basically, the program would work like this (if you know how to code, you'll do it quite easily):
1. it runs in the background all the time, doing nothing except of checking if there is any external device mounted (easy, as a external device will most of the time be /dev/sda)
2. when the device is detected, it copies files with certain extension to the destination of your choice (easy to do with loops, even easier with system() calls)
3. after copying, it quits (it could also start ignoring the device and wait for a different one but it wouldn't be as simple as listening for /dev/sda, copying and quitting)
•