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
Built-in modules: fs
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.