2014年9月21日日曜日

複数のファイルをアクロバットリーダーで連続して表示するスクリプト How to see many PDF files continuously with Acrobat Reader.


Windows上で、たくさんのPDFファイルを順番に見る必要があったため、簡単なスクリプトを組んでみたら、意外と便利だったのでアップします。
I needed to look at much PDF continuously.
Then, I created the script on which a PDF file is displayed continuously.


Windowsのフォルダ上でPDFファイルを複数選択しEnterキーを押すと、確かにPDFを同時に開く事が出来るんだけど、ウインドウが開くときに"おしゃれに"少しづつずらして開きます。で、デスクトップはPDFで埋まってしまいます。^^;
If the ENTER key is pressed after choosing a PDF file, much PDF can be displayed at once.
However, a screen will be buried with a PDF file.

しかも、散らばったウインドウを閉じる時はとても面倒です。
(右上のX印を少しずつマウスを動かしながら閉じなきゃいけないわけです。)
And it is difficult work to close the PDF file scattered in large numbers.
(The work clicks an upper right X mark, moving a mouse little by little.)

で、以下の様なスクリプトを書いて実行してあげると、
I created the following scripts and then performed.

# acro_all.sh "20140*.pdf"

ファイルを一つずつ順番に開きます。マウスで右上のXボタンを押して閉じると、次のPDFを開きます。
This script opens a PDF file in order.
A click of an upper right X mark will display the next PDF file.

開く場所やウインドの大きさは常に同じなので、マウスを動かさずにウインドウを閉じる事が出来、じみーに便利です。
A PDF file is displayed on the same place in the always same size.

cygwinのbashで組みましたが、この程度ならDOSのバッチでも出来そうですね。
I made this script from bash-shell on the cygwin environment.
I expect that the same thing can be made also from DOS-batch-file.

acro_all.sh

#! /bin/bash for SFILE in $1 do         "/C/Program Files/Adobe/Reader 10.0/Reader/AcroRd32.exe" $SFILE     #pathは環境にあわせる。 done


アクロバットはVer10、cygwin は 1.7.17-1  の環境です。
The version of Acrobat Reader is 10.
And,The version of cygwin is 1.7.17-1


0 件のコメント:

コメントを投稿

コメントをどうぞ