Too lazy to comment

This commit is contained in:
2020-01-07 11:54:38 +01:00
parent eec9f4a678
commit bfffbd70ba
6456 changed files with 670811 additions and 153682 deletions

14
textures/unwadsel.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
for fp in "$@"; do
fpf=`readlink -f $fp`
f=`basename $fp`
echo "fpf: ${fpf}"
echo "f: ${f}"
name=${f%.wad}
[[ ! -d $name ]] && mkdir $name
pushd $name
unwad $fpf
popd
done