papermario/tools/old/set_reorder_asm.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
119 B
Bash
Raw Normal View History

#!/usr/bin/env bash
shopt -s globstar
LIST=$(ls asm/**/*.s)
for i in $LIST
do
printf "\n.set reorder\n" >> $i
done