aboutsummaryrefslogtreecommitdiff
path: root/tools/TextComparer.bat
diff options
context:
space:
mode:
authorYuchen Pei <me@ypei.me>2018-01-20 15:41:49 +0100
committerYuchen Pei <me@ypei.me>2018-01-20 15:41:49 +0100
commitd3a0cc3a8ba6dfeb64d3faeffdeb6845b60e5840 (patch)
treed58df9ec2480e2a9ec6240f9c797f83d1a0b1056 /tools/TextComparer.bat
parent3571f998b28fbc8d9250ba04c983935f10a16c15 (diff)
rearranged the dir for github
- removed tools and pdfs - rearranged the projects dirs - added md files - other minor changes
Diffstat (limited to 'tools/TextComparer.bat')
-rw-r--r--tools/TextComparer.bat29
1 files changed, 0 insertions, 29 deletions
diff --git a/tools/TextComparer.bat b/tools/TextComparer.bat
deleted file mode 100644
index a036d00..0000000
--- a/tools/TextComparer.bat
+++ /dev/null
@@ -1,29 +0,0 @@
-@echo off
-
-rem $Id: TextComparer.bat,v 1.2 2014/05/10 00:52:43 marka Exp $
-rem mark.armbrust@pobox.com
-
-setlocal
-if not "%3"=="" goto :USAGE
-if "%1"=="/?" goto :USAGE
-if not "%~1"=="" (
- set "_arg1=%~f1"
-)
-if not "%~2"=="" (
- set "_arg2=%~f2"
-)
-pushd "%~dp0"
-if NOT "%~1"=="" (
- if NOT "%~2"=="" (
- java -classpath "%CLASSPATH%;bin/classes" TextComparer ^
- "%_arg1%" "%_arg2%"
- popd
- exit /B
- )
-)
-:USAGE
-echo Usage:
-echo TextComparer FILE1 FILE2 Compares FILE1 and FILE2. The success
-echo message or the first miscompared line
-echo is printed to the command console.
-popd