mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-25 13:31:22 +00:00
8 lines
180 B
Bash
8 lines
180 B
Bash
|
#!/bin/sh
|
||
|
rm $1
|
||
|
flip -u $2
|
||
|
mkdir -p `dirname $1`
|
||
|
cd /var/local/Doom/base
|
||
|
cat $2 | while read i ; do find . -ipath "./$i" ; done | cut -b 3- | tee /home/timo/cased.log | zip $1 -@
|
||
|
|