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