If you are on some variant of *nix, here’s a command line to delete all but the most recent save game:
ls triplea_*.tsvg| cut -d_ -f1-2 | sort -u| while read f;do x=ls -t1 ${f}* | head -1
; echo XXX $x;files=ls ${f}* | grep -v $x
;[ -s “$files” ] && rm $files;done
EDIT: The above isn’t quite right. Try:
ls triplea_*.tsvg| cut -d_ -f1-2 | sort -u| while read f;do x=ls -t1 ${f}* | head -1 | cut -d\( -f1
; echo XXX $x;files=ls ${f}* | grep -v $x
;rm $files ; done
Dry run:
ls triplea_*.tsvg| cut -d_ -f1-2 | sort -u| while read f;do x=ls -t1 ${f}* | head -1 | cut -d\( -f1
; echo XXX $x;files=ls ${f}* | grep -v $x
;echo to delete $files ; done