Skip to content

Instantly share code, notes, and snippets.

@lielran
Created June 2, 2014 10:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lielran/fcda6f4c2f085a9c54e7 to your computer and use it in GitHub Desktop.
Save lielran/fcda6f4c2f085a9c54e7 to your computer and use it in GitHub Desktop.
remove xml tag
TAG= "<percentageFloat>10.654656</percentageFloat>"
#expected = 10.654656
temp=$(echo $TAG |sed 's/[/]//g')
res=$(echo $temp |sed 's/[<percentageFloat>]//g')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment