vim: How to insert output of shell command in-line?
Suppose I want to edit a new libvirt XML file:
virsh dumpxml machine1 > machine2.xml
Then I open the file with vim
,
vim machine2.xml
and then I want to change the UUID. Now do this, I use
:r ! uuidgen
But the new UUID is inserted under the current line:
<uuid>6r123ttz-6t01-356t-1y7h-g7oe196c8u3m</uuid>
e67baf90-751b-4aea-a14b-aca1b881542b
How may I insert the output of the uuidgen
command into the current line, so that if I have
<uuid></uuid>
(with the cursor between ><
), then, by executing uuidgen
I get
<uuid>e67baf90-751b-4aea-a14b-aca1b881542b</uuid>
The question is: is possible to use the :r
vim command without adding a new line?
vim
add a comment |
Suppose I want to edit a new libvirt XML file:
virsh dumpxml machine1 > machine2.xml
Then I open the file with vim
,
vim machine2.xml
and then I want to change the UUID. Now do this, I use
:r ! uuidgen
But the new UUID is inserted under the current line:
<uuid>6r123ttz-6t01-356t-1y7h-g7oe196c8u3m</uuid>
e67baf90-751b-4aea-a14b-aca1b881542b
How may I insert the output of the uuidgen
command into the current line, so that if I have
<uuid></uuid>
(with the cursor between ><
), then, by executing uuidgen
I get
<uuid>e67baf90-751b-4aea-a14b-aca1b881542b</uuid>
The question is: is possible to use the :r
vim command without adding a new line?
vim
I reformulated the question. If you feel that I misrepresented you, then feel free to roll back the edit.
– Kusalananda
6 mins ago
add a comment |
Suppose I want to edit a new libvirt XML file:
virsh dumpxml machine1 > machine2.xml
Then I open the file with vim
,
vim machine2.xml
and then I want to change the UUID. Now do this, I use
:r ! uuidgen
But the new UUID is inserted under the current line:
<uuid>6r123ttz-6t01-356t-1y7h-g7oe196c8u3m</uuid>
e67baf90-751b-4aea-a14b-aca1b881542b
How may I insert the output of the uuidgen
command into the current line, so that if I have
<uuid></uuid>
(with the cursor between ><
), then, by executing uuidgen
I get
<uuid>e67baf90-751b-4aea-a14b-aca1b881542b</uuid>
The question is: is possible to use the :r
vim command without adding a new line?
vim
Suppose I want to edit a new libvirt XML file:
virsh dumpxml machine1 > machine2.xml
Then I open the file with vim
,
vim machine2.xml
and then I want to change the UUID. Now do this, I use
:r ! uuidgen
But the new UUID is inserted under the current line:
<uuid>6r123ttz-6t01-356t-1y7h-g7oe196c8u3m</uuid>
e67baf90-751b-4aea-a14b-aca1b881542b
How may I insert the output of the uuidgen
command into the current line, so that if I have
<uuid></uuid>
(with the cursor between ><
), then, by executing uuidgen
I get
<uuid>e67baf90-751b-4aea-a14b-aca1b881542b</uuid>
The question is: is possible to use the :r
vim command without adding a new line?
vim
vim
edited 7 mins ago
Kusalananda
137k17258426
137k17258426
asked 6 hours ago
elbarnaelbarna
4,199123986
4,199123986
I reformulated the question. If you feel that I misrepresented you, then feel free to roll back the edit.
– Kusalananda
6 mins ago
add a comment |
I reformulated the question. If you feel that I misrepresented you, then feel free to roll back the edit.
– Kusalananda
6 mins ago
I reformulated the question. If you feel that I misrepresented you, then feel free to roll back the edit.
– Kusalananda
6 mins ago
I reformulated the question. If you feel that I misrepresented you, then feel free to roll back the edit.
– Kusalananda
6 mins ago
add a comment |
1 Answer
1
active
oldest
votes
I had a play around and this doesn't do exactly as you want as :r will always enter a newline. But it should do what you want for a result.
:.!UUID=`uuidgen` ; echo "<uuid>$UUID</uuid>"
It puts the stdout on the current line (not at the cursor) - the smarts are done with the command that is being invoked.
New contributor
add a comment |
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%2f508407%2fvim-how-to-insert-output-of-shell-command-in-line%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had a play around and this doesn't do exactly as you want as :r will always enter a newline. But it should do what you want for a result.
:.!UUID=`uuidgen` ; echo "<uuid>$UUID</uuid>"
It puts the stdout on the current line (not at the cursor) - the smarts are done with the command that is being invoked.
New contributor
add a comment |
I had a play around and this doesn't do exactly as you want as :r will always enter a newline. But it should do what you want for a result.
:.!UUID=`uuidgen` ; echo "<uuid>$UUID</uuid>"
It puts the stdout on the current line (not at the cursor) - the smarts are done with the command that is being invoked.
New contributor
add a comment |
I had a play around and this doesn't do exactly as you want as :r will always enter a newline. But it should do what you want for a result.
:.!UUID=`uuidgen` ; echo "<uuid>$UUID</uuid>"
It puts the stdout on the current line (not at the cursor) - the smarts are done with the command that is being invoked.
New contributor
I had a play around and this doesn't do exactly as you want as :r will always enter a newline. But it should do what you want for a result.
:.!UUID=`uuidgen` ; echo "<uuid>$UUID</uuid>"
It puts the stdout on the current line (not at the cursor) - the smarts are done with the command that is being invoked.
New contributor
New contributor
answered 26 mins ago
hqqnshqqns
1
1
New contributor
New contributor
add a comment |
add a comment |
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.
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%2f508407%2fvim-how-to-insert-output-of-shell-command-in-line%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
I reformulated the question. If you feel that I misrepresented you, then feel free to roll back the edit.
– Kusalananda
6 mins ago