in reply to Re: a one-liner for this trivial problem?
in thread a one-liner for this trivial problem?
include only smallfile from largefilegrep -i -v -f smallfile largefile
include only smallfile from largefile in reverse order numberic by kolumn 2grep -i -f smallfile largefile
grep -i -f smallfile largefile | sort -r -b -g -k 2
|
|---|