Created
August 3, 2015 14:00
Windowsマシンのスタートアップ時に実行するバッチファイルのサンプル
This file contains 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 | |
rem 本バッチはスタートアップ処理を手順化したものです。 | |
rem ------------------------------------------------- | |
rem git から最新のメモを取得します | |
cd C:\Users\pinekta\Documents\gist\memo | |
git pull origin master | |
rem 非同期で実行 | |
start gvim memo.md | |
rem ------------------------------------------------- | |
rem ------------------------------------------------- | |
rem vagrant を起動します。 | |
pushd C:\Users\pinekta\Documents\vagrant\Hoge | |
vagrant up | |
rem ------------------------------------------------- | |
pause | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment