Jump to content
Nytro

Duplicate Lines Remover

Recommended Posts

Duplicate Lines Remover

Easily delete duplicate lines from files.

Duplicate Lines Remover is a handy freeware application which allows you to easily remove duplicate lines from files and strings. You can specify to ignore empty lines, remove empty lines and enable sorting of items. Is also possible to add the application to the SendTo menu for easily remove duplicate lines from files present in the hard drive.

Duplicate Lines Remover is compatible with the following 32-bit and 64-bit Microsoft Windows Operating Systems: Windows 2000, Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7

Screenshots

06_11_2011-23_50_43-530x274.jpg

06_11_2011-23_50_19-530x274.jpg

06_11_2011-23_50_32-530x274.jpg

Features

  1. Add to SendTo menu
  2. Commandline version
  3. Compatible with BOTH 32-bit and 64-bit OS
  4. Ignore empty lines
  5. Remove duplicate lines from files
  6. Remove duplicate lines from strings
  7. Remove empty lines
  8. Sort lines of a file
  9. Very user-friendly GUI

Details

Version: 1.2.0.0

Operating System: Windows All | 32-bit and 64-bit

Last Update: 17.11.2011

Category: Security

License: Freeware

Download:

http://downloads.novirusthanks.org/files/duplicate_lines_remover.exe

Sursa: Duplicate Lines Remover - Easily remove duplicate lines from files and strings

Link to comment
Share on other sites

De acord, da' in win care e comanda?

Nimic mai usor:

::==sortDup.bat
@echo off
setlocal
if {%1} EQU {} goto syntax
if not exist %1 goto syntax
set file=%1
set file="%file:"=%"
set work=%TEMP%\%~nx1
set work="%work:"=%"
set work=%work:\\=\%
sort %file% /O %work%
del /f /q %file%
for /f "Tokens=*" %%s in ('type %work%') do set record=%%s&call :output
endlocal
goto :EOF
:syntax
@echo ***************************
@echo Syntax: SortDup Input_File
@echo ***************************
endlocal
goto :EOF
:output
if not defined prev_rec goto write
if "%record%" EQU "%prev_rec%" goto :EOF
:write
@echo %record%>>%file%
set prev_rec=%record%

Nu l-am incercat.. poate incearca careva..

Sursa: Remove duplicate lines in pure .bat

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...