Microsoft
Software
Hardware
Network
Question : Delete rows in each txt file that matches full or partially. Whose names are mentioned in another txt file.
Hi,
Delete rows in each txt file that matches full or partially. Whose names are mentioned in another txt file.
I have names as
Microsoft
Microsoft visio
and so on...
if the name matches in any part of the line in each txt file then delete the row in the txt file.
Regards
Sharath
Answer : Delete rows in each txt file that matches full or partially. Whose names are mentioned in another txt file.
Try:
CD c:\yourfiles
For %%i in (*.txt) do findstr /G:c:\exclusions.txt /V /I %%i > c:\otherfolder\%%i
Posted via EE Mobile
Random Solutions
CyberPower 1500AVR PowerPanel not shutting down the server
I have a database trigger that I'd like to notify my ASP.NET program
company.com and
www.company.com
How do I create multi-dimensional arrays in C++?
Execution of stored procedures from win form
ComboBox Error
x86 server hardware run 64 bit os?
Need check box set to True when a tab is pressed within Microsoft Access?
Convert VBA Function to SQL Function
Trying to optimize my VBA Code - help with syntax