vote up 1 vote down star
1

I want a way to pass some literal text to Vim. I've seen that it can read from stdin with the "-" argument, so you can pipe things to it, e.g. the output of other commands.

But is there a way to pass any text into it like

vim - "Here's some random text"

and open Vim with that string in the buffer?

It complains if I try this command...

flag

3 Answers

vote up 13 vote down check
$ echo "Here's some random text" | vim -
link|flag
vote up 5 vote down
echo string | vim -
link|flag
3  
+ in bash one can do a vim - <<<$string – Michael Krelin - hacker Sep 11 at 19:53
vote up 0 vote down
cat some_file | vim -

This is the correct way to pipe into vim.

link|flag
Except that the OP was asking how to pipe a literal string in, not the contents of a file. – EBGreen Sep 11 at 19:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.