mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
11 lines
112 B
Bash
11 lines
112 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
shopt -s globstar
|
||
|
|
||
|
LIST=$(ls asm/**/*.s)
|
||
|
|
||
|
for i in $LIST
|
||
|
do
|
||
|
printf "\n.set reorder\n" >> $i
|
||
|
done
|