7 lines
96 B
Bash
Executable file
7 lines
96 B
Bash
Executable file
#!/bin/sh
|
|
|
|
tmpfile=`mktemp`
|
|
|
|
./deincbin.py "$1" > $tmpfile
|
|
mv $tmpfile "$1"
|
|
echo "deincbin: $1"
|