mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 23:29:41 +02:00
11 lines
264 B
Bash
Executable File
11 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
# Run this script to take an xpm generated by the gimp and format it for
|
|
# use Audacity
|
|
for arg in $@
|
|
do
|
|
filename=$(tempfile)
|
|
cat $arg| sed -e 's/\_xpm\[\]/\[\]/' -e 's/^static char \*/static const char \*/' > $filename
|
|
mv $filename $arg
|
|
|
|
done
|