summaryrefslogtreecommitdiffstats
path: root/bin/mark_asc
blob: b57a4bb5f236501f99a14eef22c469bbb63fec24 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash

for file in *.ttyrec; do
    if ttygrep 'ascend to the status of Demi' $file | grep -q ttyrec; then
        mv $file $(echo $file | sed 's/\(.*\)\.\(ttyrec\)/\1a.\2/')
    fi
done