#!/bin/bash
# file1 - file2,  Nmeth Lszl <nemeth@gyorsposta.hu>
# Usage: sub file1 file2 >file3
comm -23 <(sort $1 | uniq) <(sort $2 | uniq)
