Skip to content

Instantly share code, notes, and snippets.

@hashmaparraylist
Created February 22, 2023 06:29
Show Gist options
  • Save hashmaparraylist/ec67537a9f4335a398eff1d924884fa8 to your computer and use it in GitHub Desktop.
Save hashmaparraylist/ec67537a9f4335a398eff1d924884fa8 to your computer and use it in GitHub Desktop.
获取pom.xml中所有module
#!/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