Created
March 3, 2019 23:03
-
-
Save fgdrf/9545a7798d05f067496113ee3432f3dd to your computer and use it in GitHub Desktop.
analyse GeoServerApplication.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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