Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#!/usr/bin/env bash
shopt -s globstar
LIST=$(ls asm/**/*.s)
for i in $LIST
do
printf "\n.set reorder\n" >> $i
done