mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
12 lines
166 B
Plaintext
Executable File
12 lines
166 B
Plaintext
Executable File
ARC=$1
|
|
THM=$(basename $1 .zip)
|
|
|
|
unp -U $1
|
|
|
|
cd $THM/
|
|
|
|
for i in $(ls -1 *.png *.xml); do \
|
|
echo "$THM/file:$i" >> temp ; \
|
|
cat temp | tr "\n" "+" > filelist ; \
|
|
done
|