Skip to content

Instantly share code, notes, and snippets.

@NKid
Created March 1, 2013 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NKid/512ec33862afb12f9af2 to your computer and use it in GitHub Desktop.
Save NKid/512ec33862afb12f9af2 to your computer and use it in GitHub Desktop.
SearchCoverDB
@echo off
:SetKeyword
SET SearchStr=
SET /P SearchStr=CoverSN?
IF /I "%SearchStr%" == "Q" (
GOTO Q
) ELSE (
CLS
GOTO SEARCH
)
:Q
EXIT
:SEARCH
FINDSTR /I /C:"%SearchStr%" "F:\Dropbox\CoverDB.txt"
GOTO SetKeyword
:END
PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment