Skip to content

Instantly share code, notes, and snippets.

View boushi-bird's full-sized avatar

boushi-bird boushi-bird

  • Japan
View GitHub Profile
@boushi-bird
boushi-bird / .gitattributes
Last active March 11, 2020 13:57
三国志大戦武将カードデータ
*.json diff=json
#!/bin/bash
BASEDIR=`dirname $0`
CMDNAME=`basename $0`
# 引数の数チェック 例の場合3つあるか確認
if [ $# -ne 3 ]; then
echo "Usage $CMDNAME <RARAM1> <RARAM2> <RARAM3>"
exit 1
fi
@echo off
set BASEDIR=%~dp0
set CMDNAME=%0
rem 引数の数チェック 例の場合3つあるか確認
if "%3" EQU "" (
echo "Usage %CMDNAME% <RARAM1> <RARAM2> <RARAM3>"
exit /b 1
)