This script looks for all files starting with protected_WAG_CNVR_FY26_Immz_2yr_1Vax_Ages and print row counts in each file
for f in $(ls -1 | grep 'protected_WAG_CNVR_FY26_Immz_2yr_1Vax_Ages');do
count=$(wc -l < "$f")
echo "$f : $count"
doneThe output :