winswを利用してサービス化する。 winswはJenkinsやGlassFishも使ってる。
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
# swift post testcontainer | |
# swift list | |
testcontainer | |
# swift post -m "Temp-Url-Key:testkey" | |
# swift stat | |
Account: nc_********************************* | |
Containers: 1 | |
Objects: 0 | |
Bytes: 0 | |
Containers in policy "policy-0": 1 |
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
REM Pandocを使ってMarkdown(.md)をHTML(.html)に変換するバッチ | |
REM -f : 変換元フォーマット | |
REM -t : 変換先フォーマット | |
REM -o : 出力先ファイル | |
REM -c : CSSファイル | |
pandoc -f markdown -t html5 -o index.html -c css/github.css index.md | |
REM エラーなら停止する | |
if %ERRORLEVEL% NEQ 0 (pause) |