rename 's/$/.list/g' *
If you would like to add prefix, here is the command:
rename 's/^/pre_/g' *
$ seq 1 100 > test
$ sed -n '/^12$/,/^15$/p' test
12
13
14
15
https://unix.stackexchange.com/questions/264962/print-lines-of-a-file-between-two-matching-patterns
sort file1 file2 | uniq -u > file3
sort file1 file2 | uniq -d > file3
From:
https://stackoverflow.com/questions/18069611/fastest-way-of-finding-differences-between-two-files-in-unix