8 lines
103 B
Bash
Executable file
8 lines
103 B
Bash
Executable file
#!/bin/bash
|
|
echo 'float mus_beats[] = {'
|
|
|
|
for line in `cat mus.beats`; do
|
|
echo $line,
|
|
done
|
|
|
|
echo '};'
|