mirror of
https://github.com/lucky-sideburn/kubeinvaders.git
synced 2026-08-20 12:06:23 +00:00
5 lines
177 B
Bash
5 lines
177 B
Bash
for i in $(ls | grep -v generate | sort | uniq)
|
|
do
|
|
echo "<button type=\"button\" id=\"load${i^}\" class=\"btn btn-light btn-sm\" onclick=\"load${i^}()\">${i^}</button>"
|
|
done
|