Skip to content

Latest commit

 

History

History
37 lines (33 loc) · 573 Bytes

README.md

File metadata and controls

37 lines (33 loc) · 573 Bytes

Wordlist-diff

Description

A simple tool to complement wordlist work. Let's say you have two files - small.txt and large.txt.

small.txt

apple
pineapple
pen

large.txt

apple
test
something
pineapple
melon
pen

After you run index.js, you will have difference.txt containing:

test
something
melon

Requirements

Built-in modules: fs

Usage

Place your remove list in the project directory as small.txt and the list from you will remove - large.txt. Then run:

node index.js
  • Use Unix (LF) line endings.