Skip to content

Remove duplicates and sort lines

Drop repeated lines, then sort the unique ones alphabetically.

  1. 1.Remove duplicate lines
  2. 2.Sort lines

The two most common list operations, chained: remove every duplicate line, then sort the survivors alphabetically. Useful for tidying keyword lists, deduplicating exported records, or turning a messy dump into a clean, ordered reference.

Both steps run locally in your browser, so nothing you paste is uploaded. Drop your lines in below and the deduplicated, sorted result updates as you type.

Questions

Are duplicates matched exactly?
Yes — lines must match character for character. If spacing differs, run the clean-and-dedupe recipe instead, which trims first.
Is the sort case-sensitive?
The sort step uses the default order. Open it on its own page for case-insensitive, numeric or reverse ordering.

Build your own chain in the pipeline builder.