Reputation: 9479
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
Reputation: 216303
You should leave a space between options
findstr /s /i /c:"permission denied" *.*
Upvotes: 2
Reputation: 6667
Add spaces between the parameters:
findstr /s /i /c:"permission denied" *.*
Upvotes: 4