How to find shared lines in the last n days across n files
find internal*.csv -maxdepth 0 -type f -mtime -5 | xargs cat | sort | uniq -c | sed -n -e 's/^ *5 \(.*\)/\1/p'
find internal*.csv -maxdepth 0 -type f -mtime -5 | xargs cat | sort | uniq -c | sed -n -e 's/^ *5 \(.*\)/\1/p'