sed/awk/grep/cut: multiply a number in an xml-attribute by factor of ten
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
export i=test.txt
#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]{3,5} [-[:digit:].]{3,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 -re "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
add a comment |
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
export i=test.txt
#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]{3,5} [-[:digit:].]{3,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 -re "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
Is it an absolute requirement that you usesed
? 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
yesterday
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
19 hours ago
@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
11 hours ago
add a comment |
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
export i=test.txt
#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]{3,5} [-[:digit:].]{3,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 -re "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
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
export i=test.txt
#Reading out the relevant line
export j=$(ls -l|grep -E "viewBox="[-[:digit:].]{3,5} [-[:digit:].]{3,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 -re "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
awk sed grep cut
edited 11 hours ago
asked Dec 13 at 22:11
JoKalliauer
11318
11318
Is it an absolute requirement that you usesed
? 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
yesterday
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
19 hours ago
@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
11 hours ago
add a comment |
Is it an absolute requirement that you usesed
? 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
yesterday
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
19 hours ago
@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
11 hours 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
yesterday
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
yesterday
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
19 hours 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
19 hours ago
@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
11 hours ago
@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
11 hours ago
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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
yesterday
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
19 hours ago
@JigglyNaga I you know a working solution I would be happy. (sorry for the missleading title)
– JoKalliauer
11 hours ago