#!/bin/bash -norc

# Public domain notice for all NCBI EDirect scripts is located at:
# https://www.ncbi.nlm.nih.gov/books/NBK179288/#chapter6.Public_Domain_Notice

# Usage: exclude-uid-lists FILE1 FILE2

comm -23 <(sort -f "$1") <(sort -f "$2") | sort -n
