8 lines
166 B
Bash
Executable file
8 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
while read p; do
|
|
if [ ! -d "utility/common_static/configured/$p" ]; then
|
|
#echo "No warngen geometries for $p"
|
|
echo $p
|
|
fi
|
|
done <wfos.sql.txt
|
|
|