Reputation: 105
script 1 - it generates pdf file into the path //c:/documents/xxxx
script 2 - launch pdf file generated by script 1 from Adobe Acrobat Reader.
I need a solution(i.e shell script) for script 2. Some one please advise me.
Thanks in advance.
Upvotes: 1
Views: 891
Reputation: 1306
application name
<filename>
should work.
e.g. evince myfile.pdf
START "" "path/to/file.pdf"
This will open the file in the default application for PDF files.
Upvotes: 1