Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

remove-duplicates(1) [debian man page]

REMOVE-DUPLICATES(1)						   User Commands					      REMOVE-DUPLICATES(1)

NAME
remove-duplicates - remove duplicates of the same file in the current directory SYNOPSIS
remove-duplicate [-f] DESCRIPTION
remove-duplicates Remove duplicates of the same file in the current directory if -f is given. If -f is not given, duplicate will be identi- fied twice (once in every direction). OPTIONS
-f AUTHOR
Recoverjpeg has been written by Samuel Tardieu <sam@rfc1149.net>. If recoverjpeg saves your day and you liked it, you are welcome to send me the best rescued ones by email (please send only 800x600 ver- sions of the pictures) and authorize me to put them online (indicate which contact information you want me to use for credits). COPYRIGHT
Copyright (c) 2004 Samuel Tardieu <sam@rfc1149.net> This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. SEE ALSO
recoverjpeg(1) sort-pictures(1) remove-duplicates October 2008 REMOVE-DUPLICATES(1)

Check Out this Related Man Page

MU-REMOVE(1)						      General Commands Manual						      MU-REMOVE(1)

NAME
mu_remove - remove one or more messages to the database SYNOPSIS
mu remove <file> [<files>] DESCRIPTION
mu remove removes specific messages from the database, each of them specified by their filename. The files do not have to exist (anymore). OPTIONS
mu remove does not have its own options, but the general options for determining the location of the database (--muhome) are available. See mu-index(1) for more information. RETURN VALUE
mu remove returns 0 upon success; in general, the following error codes are returned: | code | meaning | |------+-----------------------------------| | 0 | ok | | 1 | general error | | 5 | some database update error | BUGS
Please report bugs if you find them: http://code.google.com/p/mu0/issues/list AUTHOR
Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> SEE ALSO
mu(1) mu-index(1) mu-add(1) User Manuals October 2011 MU-REMOVE(1)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

need to pass parameters to working and tested awk script

I have a working and tested AWK script that removes duplicates from an input file and generates an output file without the duplicates. I had help from my other post to develop it: ... (3 Replies)
Discussion started by: script_op2a
3 Replies

2. UNIX for Dummies Questions & Answers

awk to remove redundancy, with conditions

Hi Everyone, I've been using awk '!x++' to get rid of redundancy in a file, but it's getting rid of some extra lines I need (like the plus signs in the example below). So how would I go from this: @XYZ ABCD 345345 + @MNO EFGH 789789 + @XYZ ABCD 345345 + to: (2 Replies)
Discussion started by: sp24
2 Replies

3. Shell Programming and Scripting

Sort and Remove duplicates

Here is my task : I need to sort two input files and remove duplicates in the output files : Sort by 13 characters from 97 Ascending Sort by 1 characters from 96 Ascending If duplicates are found retain the first value in the file the input files are variable length, convert... (4 Replies)
Discussion started by: ysvsr1
4 Replies

4. Shell Programming and Scripting

Implementing Listagg like function in shell

Hi, Basically what I am trying to do is making multiple fields of the same type comma-separated. i.e. for a data like this: B00000 abc B00001 abc,def B00001 ghi B00001 jkl B00002 abc B00002 def B00003 xyz Output should be like: B00000 abc B00001 abc,def,ghi,jkl... (20 Replies)
Discussion started by: prohank
20 Replies