in reply to Re: a one-liner for this trivial problem?
in thread a one-liner for this trivial problem?

exclude smallfile from largefile
grep -i -v -f smallfile largefile
include only smallfile from largefile
grep -i -f smallfile largefile
include only smallfile from largefile in reverse order numberic by kolumn 2
grep -i -f smallfile largefile | sort -r -b -g -k 2