Created
April 11, 2019 11:09
-
-
Save larshb/48f39921d34102a1433c4dba76004c90 to your computer and use it in GitHub Desktop.
Tiny VBS-script to search and download PDF-files on demand
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim query, wsh | |
Set wsh=WScript.CreateObject("WScript.Shell") | |
query = InputBox("Find PDF for: ") | |
wsh.Run "http://www.google.com/search?q=ext:pdf%20" & query & "&btnI" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment