Q: On Linux, when I try to start PDF Studio from shell (bash) with “pdfstudio8 myfile.pdf” where “myfile.pdf” is in the current directory, it can’t find the file. It can access only when I give the full path of the file. Is there any way to make this work?

A: You will need to create a script called pdfs in the bin directory which in turn invokes PDF Studio with the given file name argument. The script should contain:
pdfstudio8 $PWD/"$1" >/dev/null&
Now from within a given folder, you can invoke PDF Studio through command line without having to give the full file path by using:
pdfs myfile.pdf

Start PDF Studio with command line