I have it in my dropbox, link here:workshop_manual Go to the Main_index_pdf.txt first to make sense of it.
EDIT 18 July 2020......
I just discovered that my linux system dropbox app sends all lower case files, the index requires the prefix to be upper.
Just run this bash script in a linux terminal and it will change the prefixes to upper case so the index works.
Code:
Alternatively I have uploaded a converted file and the new link is here: workshop_manualcaps
Cheers, Tony.
EDIT 18 July 2020......
I just discovered that my linux system dropbox app sends all lower case files, the index requires the prefix to be upper.
Just run this bash script in a linux terminal and it will change the prefixes to upper case so the index works.
Code:
Code:
for file in * ; do # or .jpg, or x.jpg, or whatever
basename=$(tr '[:lower:]' '[:upper:]' <<< "${file%.*}")
newname="$basename.${file#*.}"
mv "$file" "$newname"
done
Cheers, Tony.