On Fri, 25 Apr 2014 17:08:27 +0000, EngineeringGuy wrote:
> Could someone please give me some guidance on unzipping and putting
> Psychopath posts back together.
>
You can create a batch script to do all the dirty work
for you. For example, on a Linux system here is a simple
bash shell script for a set of files xxxxa.zip, xxxxb,zip, etc.
Just pass the base name "xxxx" to the script as a parameter.
Although this is a Linux shell script, en equivalent batch
script for MS Windows could easily be created.
for i in $1*zip
do
unzip -n $i
done
unrar $1.rar
All thats left is to rename the resulting PDF file.
|
Follow-ups: | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |
|