2010-01-02 13:04:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-08-24 16:09:39 +00:00
|
|
|
#Script to test all nif files (both loose, and in BSA archives) in data files directory
|
2010-01-02 13:04:31 +00:00
|
|
|
|
2014-08-24 16:09:39 +00:00
|
|
|
DATAFILESDIR="$1"
|
2010-01-02 13:04:31 +00:00
|
|
|
|
2014-08-24 16:09:39 +00:00
|
|
|
find "$DATAFILESDIR" -iname *bsa > nifs.txt
|
|
|
|
find "$DATAFILESDIR" -iname *nif >> nifs.txt
|
2010-01-02 13:04:31 +00:00
|
|
|
|
2014-08-24 16:09:39 +00:00
|
|
|
sed -e 's/.*/\"&\"/' nifs.txt > quoted_nifs.txt
|
|
|
|
|
|
|
|
xargs --arg-file=quoted_nifs.txt ../../../niftest
|
|
|
|
|
|
|
|
rm nifs.txt
|
|
|
|
rm quoted_nifs.txt
|