Skip to content

Instantly share code, notes, and snippets.

@fgdrf
Created March 3, 2019 23:03
Show Gist options
  • Save fgdrf/9545a7798d05f067496113ee3432f3dd to your computer and use it in GitHub Desktop.
Save fgdrf/9545a7798d05f067496113ee3432f3dd to your computer and use it in GitHub Desktop.
analyse GeoServerApplication.properties
for i in `find . -name GeoServerApplication.properties`
do
xx=${i:2};
cnt=`grep -c $xx .tx/config`
if [[ $cnt -eq 0 ]]
then
echo $xx
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment