Skip to content

Instantly share code, notes, and snippets.

@salsferrazza
Created November 22, 2022 23:35
Show Gist options
  • Select an option

  • Save salsferrazza/0d1ecd29a60207be6e02265689b6e341 to your computer and use it in GitHub Desktop.

Select an option

Save salsferrazza/0d1ecd29a60207be6e02265689b6e341 to your computer and use it in GitHub Desktop.
Split lines by first instance of a space
while read -r line
do
export UOM=$(echo ${line} | cut -f1 -d" ")
export s=" "
export DESC=${line#*$s}
echo "<value enum='${UOM}' description='${DESC}'/>"
done < /var/tmp/uom.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment