I created a script by using the command line initially:
grep -c "Author" reviews_folder/* | cut -d \/ -f 2 | sort -nt':' -k2 | sed 's/.dat:/ /g'
It worked, however I then needed to make it a shell script which allowed the user to enter a directory for it to search, so I changed it to:
grep -c "Author" $1/* | cut -d \/ -f 2 | sort -nt':' -k2 | sed 's/.dat:/ /g'
After this was complete, rather than the script working, it just printed lots of blank lines.