Created
July 6, 2013 13:41
-
-
Save tsu-nera/5939919 to your computer and use it in GitHub Desktop.
ブログ画像 Google Picasa投稿用バッチファイル 1. Google Picasa にドラッグ & ドロップで投稿
2. 投稿した画像のURLを取得
3. <img src="URL"></a>に変換
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
| @echo off | |
| chcp 932 | |
| set file=%* | |
| rem Picasaに投稿 | |
| python "C:\Python26\Scripts\google" picasa post Futurismo "%file%" | |
| rem URL取得 | |
| for /f "usebackq tokens=*" %%a in (`python "C:\Python26\Scripts\google" picasa list --fields=url-direct --query "%file:C:\Users\TSUNEMICHI\Desktop\=%"`) do @set x=%%a | |
| rem 変換 | |
| echo "<img src="%x%" />" | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment