sed/awk/grep/cut: multiply a number in an xml-attribute by factor of ten

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0














I would like to multiply the attribute in viewBox of svg-files by a factor of ten.



I want to change
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" version="1.1"> to <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" version="1.1"><g transform="scale(10)">
(I need it for a workaround of a librsvg-bug)



My current script looks like this:







#!/bin/bash

#defining file
export i=test.svg

#Define file as a variable
export h=$(sed -r 's/<svg ([-[:alnum:]=" ./:,]+) viewBox="([-[:digit:]]+) ([-[:digit:]]+) ([[:digit:]]+).([[:digit:]])([[:digit:]]*) ([[:digit:]]+).([[:digit:]])([[:digit:]]*)"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="0 0 23.40 56.70"8><g transform="scale(10)">/' $i)

#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]1,5 [-[:digit:].]1,5 [[:digit:].]3,7 [[:digit:].]3,7" $i)

#Insert a special character to define the point of splitting
export l=$(echo $j | sed -e "s/viewBox="/>/g" )

#split at this special character and take the part afterwards
export m=$(echo $l | cut -f2 -d">")

#Multiply the four numbers by a factor of 10
export n=$(echo $m | awk 'printf "%f %f %f %fn",$1*10,$2*10,$3*10,$4*10')

#Replace the old four numbers with the new four numbers
sed -ri "s/<svg([-[:alnum:]=" ./:;,#]*) viewBox="[-[:digit:].]+ [-[:digit:].]+ [[:digit:].]+ [[:digit:].]+"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="$n"2><g transform="scale(10)">/" $i




This is neither beautiful, nor always working. (for example it won't work if there is an inline svg in an mother-svg embedded (example))



You can use whatever you want it should:



  • Work on Ubuntu aswell on Cygwin

  • should be a batchcommand









share|improve this question























  • Is it an absolute requirement that you use sed? It's suited neither to XML parsing, nor to arithmetic. awk can handle arithmetic, but to handle complex files you would need a dedicated XML parser (such as xmlstarlet).
    – JigglyNaga
    Dec 21 at 15:54






  • 1




    @JigglyNaga The slight issue here is that xmlstarlet can't really poke inside the text attribute to modify its values. One would have to extract it, modify it by other means, and update the XML with the modified text string.
    – Kusalananda
    2 days ago










  • @JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
    – JoKalliauer
    2 days ago















0














I would like to multiply the attribute in viewBox of svg-files by a factor of ten.



I want to change
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" version="1.1"> to <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" version="1.1"><g transform="scale(10)">
(I need it for a workaround of a librsvg-bug)



My current script looks like this:







#!/bin/bash

#defining file
export i=test.svg

#Define file as a variable
export h=$(sed -r 's/<svg ([-[:alnum:]=" ./:,]+) viewBox="([-[:digit:]]+) ([-[:digit:]]+) ([[:digit:]]+).([[:digit:]])([[:digit:]]*) ([[:digit:]]+).([[:digit:]])([[:digit:]]*)"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="0 0 23.40 56.70"8><g transform="scale(10)">/' $i)

#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]1,5 [-[:digit:].]1,5 [[:digit:].]3,7 [[:digit:].]3,7" $i)

#Insert a special character to define the point of splitting
export l=$(echo $j | sed -e "s/viewBox="/>/g" )

#split at this special character and take the part afterwards
export m=$(echo $l | cut -f2 -d">")

#Multiply the four numbers by a factor of 10
export n=$(echo $m | awk 'printf "%f %f %f %fn",$1*10,$2*10,$3*10,$4*10')

#Replace the old four numbers with the new four numbers
sed -ri "s/<svg([-[:alnum:]=" ./:;,#]*) viewBox="[-[:digit:].]+ [-[:digit:].]+ [[:digit:].]+ [[:digit:].]+"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="$n"2><g transform="scale(10)">/" $i




This is neither beautiful, nor always working. (for example it won't work if there is an inline svg in an mother-svg embedded (example))



You can use whatever you want it should:



  • Work on Ubuntu aswell on Cygwin

  • should be a batchcommand









share|improve this question























  • Is it an absolute requirement that you use sed? It's suited neither to XML parsing, nor to arithmetic. awk can handle arithmetic, but to handle complex files you would need a dedicated XML parser (such as xmlstarlet).
    – JigglyNaga
    Dec 21 at 15:54






  • 1




    @JigglyNaga The slight issue here is that xmlstarlet can't really poke inside the text attribute to modify its values. One would have to extract it, modify it by other means, and update the XML with the modified text string.
    – Kusalananda
    2 days ago










  • @JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
    – JoKalliauer
    2 days ago













0












0








0







I would like to multiply the attribute in viewBox of svg-files by a factor of ten.



I want to change
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" version="1.1"> to <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" version="1.1"><g transform="scale(10)">
(I need it for a workaround of a librsvg-bug)



My current script looks like this:







#!/bin/bash

#defining file
export i=test.svg

#Define file as a variable
export h=$(sed -r 's/<svg ([-[:alnum:]=" ./:,]+) viewBox="([-[:digit:]]+) ([-[:digit:]]+) ([[:digit:]]+).([[:digit:]])([[:digit:]]*) ([[:digit:]]+).([[:digit:]])([[:digit:]]*)"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="0 0 23.40 56.70"8><g transform="scale(10)">/' $i)

#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]1,5 [-[:digit:].]1,5 [[:digit:].]3,7 [[:digit:].]3,7" $i)

#Insert a special character to define the point of splitting
export l=$(echo $j | sed -e "s/viewBox="/>/g" )

#split at this special character and take the part afterwards
export m=$(echo $l | cut -f2 -d">")

#Multiply the four numbers by a factor of 10
export n=$(echo $m | awk 'printf "%f %f %f %fn",$1*10,$2*10,$3*10,$4*10')

#Replace the old four numbers with the new four numbers
sed -ri "s/<svg([-[:alnum:]=" ./:;,#]*) viewBox="[-[:digit:].]+ [-[:digit:].]+ [[:digit:].]+ [[:digit:].]+"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="$n"2><g transform="scale(10)">/" $i




This is neither beautiful, nor always working. (for example it won't work if there is an inline svg in an mother-svg embedded (example))



You can use whatever you want it should:



  • Work on Ubuntu aswell on Cygwin

  • should be a batchcommand









share|improve this question















I would like to multiply the attribute in viewBox of svg-files by a factor of ten.



I want to change
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" version="1.1"> to <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" version="1.1"><g transform="scale(10)">
(I need it for a workaround of a librsvg-bug)



My current script looks like this:







#!/bin/bash

#defining file
export i=test.svg

#Define file as a variable
export h=$(sed -r 's/<svg ([-[:alnum:]=" ./:,]+) viewBox="([-[:digit:]]+) ([-[:digit:]]+) ([[:digit:]]+).([[:digit:]])([[:digit:]]*) ([[:digit:]]+).([[:digit:]])([[:digit:]]*)"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="0 0 23.40 56.70"8><g transform="scale(10)">/' $i)

#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]1,5 [-[:digit:].]1,5 [[:digit:].]3,7 [[:digit:].]3,7" $i)

#Insert a special character to define the point of splitting
export l=$(echo $j | sed -e "s/viewBox="/>/g" )

#split at this special character and take the part afterwards
export m=$(echo $l | cut -f2 -d">")

#Multiply the four numbers by a factor of 10
export n=$(echo $m | awk 'printf "%f %f %f %fn",$1*10,$2*10,$3*10,$4*10')

#Replace the old four numbers with the new four numbers
sed -ri "s/<svg([-[:alnum:]=" ./:;,#]*) viewBox="[-[:digit:].]+ [-[:digit:].]+ [[:digit:].]+ [[:digit:].]+"([-[:alnum:]=" ./:,]+)>/<svg 1 viewBox="$n"2><g transform="scale(10)">/" $i




This is neither beautiful, nor always working. (for example it won't work if there is an inline svg in an mother-svg embedded (example))



You can use whatever you want it should:



  • Work on Ubuntu aswell on Cygwin

  • should be a batchcommand






awk sed grep cut






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday

























asked Dec 13 at 22:11









JoKalliauer

11318




11318











  • Is it an absolute requirement that you use sed? It's suited neither to XML parsing, nor to arithmetic. awk can handle arithmetic, but to handle complex files you would need a dedicated XML parser (such as xmlstarlet).
    – JigglyNaga
    Dec 21 at 15:54






  • 1




    @JigglyNaga The slight issue here is that xmlstarlet can't really poke inside the text attribute to modify its values. One would have to extract it, modify it by other means, and update the XML with the modified text string.
    – Kusalananda
    2 days ago










  • @JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
    – JoKalliauer
    2 days ago
















  • Is it an absolute requirement that you use sed? It's suited neither to XML parsing, nor to arithmetic. awk can handle arithmetic, but to handle complex files you would need a dedicated XML parser (such as xmlstarlet).
    – JigglyNaga
    Dec 21 at 15:54






  • 1




    @JigglyNaga The slight issue here is that xmlstarlet can't really poke inside the text attribute to modify its values. One would have to extract it, modify it by other means, and update the XML with the modified text string.
    – Kusalananda
    2 days ago










  • @JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
    – JoKalliauer
    2 days ago















Is it an absolute requirement that you use sed? It's suited neither to XML parsing, nor to arithmetic. awk can handle arithmetic, but to handle complex files you would need a dedicated XML parser (such as xmlstarlet).
– JigglyNaga
Dec 21 at 15:54




Is it an absolute requirement that you use sed? It's suited neither to XML parsing, nor to arithmetic. awk can handle arithmetic, but to handle complex files you would need a dedicated XML parser (such as xmlstarlet).
– JigglyNaga
Dec 21 at 15:54




1




1




@JigglyNaga The slight issue here is that xmlstarlet can't really poke inside the text attribute to modify its values. One would have to extract it, modify it by other means, and update the XML with the modified text string.
– Kusalananda
2 days ago




@JigglyNaga The slight issue here is that xmlstarlet can't really poke inside the text attribute to modify its values. One would have to extract it, modify it by other means, and update the XML with the modified text string.
– Kusalananda
2 days ago












@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
2 days ago




@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
2 days ago















active

oldest

votes











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487878%2fsed-awk-grep-cut-multiply-a-number-in-an-xml-attribute-by-factor-of-ten%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487878%2fsed-awk-grep-cut-multiply-a-number-in-an-xml-attribute-by-factor-of-ten%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown






Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay