xarzu
xarzu

Reputation: 9479

What am I missing with this Findstr command?

What am I missing with this Findstr command?

X:\Admin>findstr /s/i/c:"permission denied" *.*
FINDSTR: // ignored
FINDSTR: // ignored

X:\Admin>findstr -s-i-c:"permission denied" *.*
FINDSTR: /- ignored
FINDSTR: /- ignored

X:\Admin>

Upvotes: 2

Views: 8273

Answers (2)

Steve
Steve

Reputation: 216303

You should leave a space between options

 findstr /s /i /c:"permission denied" *.*

Upvotes: 2

mandaleeka
mandaleeka

Reputation: 6667

Add spaces between the parameters:

findstr /s /i /c:"permission denied" *.*

Upvotes: 4

Related Questions