Created
February 22, 2023 06:29
-
-
Save hashmaparraylist/ec67537a9f4335a398eff1d924884fa8 to your computer and use it in GitHub Desktop.
获取pom.xml中所有module
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
#!/bin/bash | |
read_dom () { | |
#local IFS=\> | |
#read -d \< ENTITY CONTENT | |
local IFS=\> | |
read -d \< ENTITY CONTENT | |
local ret=$? | |
TAG_NAME=${ENTITY%% *} | |
ATTRIBUTES=${ENTITY#* } | |
return $ret | |
} | |
declare -a modules | |
while read_dom; do | |
if [[ $ENTITY = "module" ]] ; then | |
# echo $CONTENT | |
modules+=($CONTENT) | |
fi | |
done < $1 | |
for m in "${modules[@]}"; do | |
echo $m | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment