mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-12-03 01:32:38 +00:00
7 lines
179 B
Bash
7 lines
179 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 -@
|