Tagged Questions
The findstr tag has no wiki summary.
7
votes
5answers
3k views
findstr or grep that autodetects chararacter encoding (UTF-16)
I want to do this:
findstr /s /c:some-symbol *
or the grep equivalent
grep -R some-symbol *
but I need the utility to autodetect files encoded in UTF-16 (and friends) and search them ...
5
votes
1answer
181 views
What are the undocumented features and limitations of the Windows FINDSTR command?
The Windows FINDSTR command is horribly documented. There is very basic command line help available through FINDSTR /?, or HELP FINDSTR, but it is woefully inadequate. There is a wee bit more ...
4
votes
2answers
738 views
Why does findstr not handle case properly (in some circumstances)?
While writing some recent scripts in cmd.exe, I had a need to use findstr with regular expressions - customer required standard cmd.exe commands (no GnuWin32 nor Cygwin nor VBS nor Powershell).
I ...
4
votes
3answers
898 views
How do I redirect output into Gvim as a list of files to be opened?
I would like findstr /m background *.vim | gvim to open all *.vim files containing background in a single instance of gvim - but I can't get the piping to work.
This is very similar to this question ...
3
votes
2answers
2k views
SVN Pre Commit Hooks
I am currently trying to extend our already existing (and working) pre commit batch file for committing to SVN. The first part blocks any commit that does not have comments and works as expected. The ...
2
votes
1answer
58 views
Why doesn't this FINDSTR example with multiple literal search strings find a match?
The following FINDSTR example fails to find a match.
echo ffffaaa|findstr /l "ffffaaa faffaffddd"
Why?
2
votes
3answers
1k views
Escaping a quote in findstr search string
How can I properly escape a quote in a search string when using findstr.exe?
Example:
findstr /misc:"namespace=\"" *.cs > ns.txt
This outputs to the console, instead of to the file I specified.
...
2
votes
1answer
382 views
DOS Command FindStr
I have a need to use the DOS command FINDSTR to search in all our source code files mixed with other types of files such as PDF, exe, dll, etc.
I do not need to search those binary files. Is there a ...
2
votes
1answer
1k views
Piping to findstr's input
I have a text file with a list of macro names (one per line). My final goal is to get a print of how many times the macro's name appears in the files of the current directory.
The macro's names are ...
2
votes
3answers
4k views
Regular expressions in findstr
I'm doing a little string validation with findstr and its /r flag to allow for regular expressions. In particular I'd like to validate integers.
The regex
^[0-9][0-9]*$
worked fine for ...
2
votes
5answers
4k views
Escaping a backslash in Batch File using FINDSTR
In my svn Pre commit hooks I use findstr to block certain file types beign committed.
I now want to extend this to directories, in the first instance \obj\ directories however I am having problems ...
1
vote
2answers
85 views
Search in all directories
I can't find out how to search in Vim in all directories with:
grep
ack
findstring
vimgrep
p.e. search "search-item" in all .txt files in c:\ and d:\ (including sub directories)
Can anyone help ...
1
vote
1answer
68 views
grep like syntax with findstr
ive been using grep a lot on linux lately but now i need to use findstr to carry out the same tasks on a windows machine and cant quite get the syntax just right.
My grep command looks like:
grep ...
1
vote
1answer
127 views
FINDSTR cannot open path with spaces
Drag and drop .bat, it takes the files,
puts it in 2 lists and process both list simultanously.
I passed a path : X:\folder\folder number\begin.txt into %1
it's working fine if i have foldernumber ...
1
vote
1answer
163 views
FINDSTR Batch Command truncates the file
I am having a batch script to copy only the lines with a specific string to another file. The lines will be longer sometimes. I am using
FindStr /I "string" file1 > file2
to do this operation. ...
1
vote
1answer
95 views
problem while using findstr
I am trying to execute the following pattern in findstr. The findstr is complaining that the
)]%%)
is unexpected at this time.
I passed the following statement
findstr
...
1
vote
1answer
123 views
Searching for a list of strings using the “findstr” command
Is it possible to search for a list of strings (100+), for example in a text file and using a command such as findstr to identify which files contain any of the strings? Or is there a better ...
1
vote
2answers
240 views
What does the DOS command “findstr” do here?
From my understanding of findstr, it looks for text within files. What, then, is making it search for a pattern in the filename itself?
dir | findstr "test[0-9][0-9][0-9]test"
Does the pipe alter ...
1
vote
4answers
397 views
How can I use findstr with newline regular expression
I'm on windows dos prompt. I have log file which contains log like:
Timestamp: Order received for Item No. 26551
Timestamp: Exception: OutOfRangeException
Timestamp: Message: Inventory Item is not ...
1
vote
1answer
1k views
piping findstr's output
Windows command line, I want to search a file for all rows starting with:
# NNN "<file>.inc"
where NNN is a number and <file> any string.
I want to use findstr, because I cannot ...
1
vote
4answers
823 views
write results into a text file
I created a batch that will use windows FINDSTR to search for my selective input.
I am trying to log my results of my search term in a text file called results.txt
So I do have something like this ...
0
votes
1answer
21 views
Windows cmd - findstr and gawk or how would you pull the below data out
I was wondering if it's possible to use findstr and/or gawk to return the output of a windows cmd exactly how I need it to be. I'm currently returning the output raw, then stripping out the blank ...
0
votes
1answer
52 views
Removing textual lines from top or that include specific char or string from multiple text files
I have lyrics text files in the same directory, from which I would like to remove several lines according to these rules:
A. remove all line that include square brackets [ ]
B. remove the three ...
0
votes
0answers
58 views
FINDSTR — Delete Text and Save File
I have about 500 text files in a particular folder. I would like to open each text file, delete all the text that is not part of the string that I am searching, and then save the file.
For example, ...
0
votes
0answers
125 views
Automated batch script using netdom to join newly imaged comuters to domain
Though, I look like one of the most intelligent human beings to ever walk the face of this earth, I am not proficient in scripting nor programming.
My basic current setup is:
Windows 2003 soon to ...
0
votes
2answers
124 views
Batch findstr regular expression to grep an item from a single line
How can I use Microsoft findstr to "grep" an item from a single line?
I've got a line that goes something like this:
<config>test</config><item>some ...
0
votes
2answers
75 views
Batch file - finding a string after a space in a text file
I wonder if someone can help me with this?
I need a way in a batch file to assign a variable to a string in a text file.
My text file looks like below (a user name - a space - then a postcode):
...
0
votes
1answer
161 views
FINDSTR - Command Prompt - Cleaned all “junk” out of .txt file. Now how to remove spaces, eg, blank rows?
Well, I believe the title says it all.
I have printed a report off of a legacy pos software system, but instead of actually printing it, i have sent this information to a text file instead.
I have ...
0
votes
1answer
301 views
Help with SubString in SSIS
Hallo All,
I have a little Problem with the SubString-Function in SSIS (Derived Column).
So on..
That are the possible Input Strings:
Toys|Category|Cars|Lego
...
0
votes
1answer
205 views
using findstr with regex to search through CSV
I was wondering if it's possible to use findstr to search through a CSV for anything matching this regular expression
^([BPXT][0-9]{6})|([a-zA-Z][a-zA-z][0-9][0-9](adm)?)$
0
votes
1answer
249 views
findstr - how to find user and display entire line?
I have a file that contains multiple lines of data, e.g:
dfscmd /map "\SERVER\PATH\AREA\testuser" "\NEW_SERVER\PATH\testuser" "DFSLink Home Drive: Test, User"
dfscmd /map ...
0
votes
2answers
214 views
Using Sleep with findstr in a .bat
I created a .bat file with the below lines
cd C:\MyFolder
d:
findstr "Apple" C:\log.txt |findstr "red" > red_apples.txt
SLEEP 3600
GOTO START
When the bat is executed, the SLEEP is not working ...