Tags: bash scripting 

Rating:

Did this with bash...

while read line; do date -d"${line} next year" +%a; done < date.txt | grep Fri | wc

Should probably shorten it with a "grep -c" instead of wc

Requires gnu date, won't work the same on a Mac.