I want to write a Bash shell script that does the following:
If you are wanting to see the work being done inside vim or gvim you can use --remote-send
gvim --servername SHELL_DRIVER
bashpromt# cat mybash.sh
#!/bin/bash
echo "about to open $1"
gvim --servername SHELL_DRIVER $1 #I need to use vim application to open a file
#now write something into file.txt and close it
gvim --servername SHELL_DRIVER --remote-send '<ESC>i something to the file<ESC>:wq<CR>'
echo "done."
This will be slow but will do what you want it to.
First we open a gvim in which we can open all of our files (for efficiency)
With the first gvim line we open the file in the previously opened gvim.
On the second gvim line we send a command to the previously opened instance of gvim (with the desired file still open).
The command is as follows:
<ESC>
- get out of any mode that gvim might have been in
i something to the file
- go into insert mode and type " something to the file"
<ESC>
- exit insert mode
:wq
- write the file and quit vim
Recently, I have answered a similar question, “Automated editing of several files in Vim”. May be the solution that I describe there will satisfy your needs.
You asked how to write "something" into a text file via vim and no answer has necessarily covered that yet.
To insert text:
ex $yourfile <<EOEX
:i
my text to insert
.
:x
EOEX
:i
enters insert mode. All following lines are inserted text until .
is seen appearing by itself on its own line.
Here is how to search and insert as well. You can do something such as:
ex $yourfile <<EOEX
:/my search query\zs
:a
my text to insert
.
:x
EOEX
This will find the first selection that matches regex specified by :/
, place the cursor at the location specified by \zs
, and enter insert mode after the cursor.
You can move \zs
to achieve different results. For example:
ex $yourfile <<EOEX
:/start of match \zs end of match
:a
my text to insert
.
:x
EOEX
This will change the first occurrence of "start of match end of match" to "start of match my text to insert end of match".
If you want to allow any amount of whitespace in your searches between keywords, use \_s*
. For example, searching for a function that returns 0: :/\_s*return\_s*0}
Vim has several options:
-c
=> pass ex commands. Example: vim myfile.txt -c 'wq'
to force the last line of a file to be newline terminated (unless binary
is set in some way by a script)-s
=> play a scriptout that was recorded with -W
. For example, if your file contains ZZ
, then vim myfile.txt -s the_file_containing_ZZ
will do the same as previously.Also note that, invoked as ex
, vim will start in ex mode ; you can try ex my_file.txt <<< wq
ex
is the commandline version for vi
, and much easier to use in scripts.
ex $yourfile <<EOEX
:%s/$string_to_replace/$string_to_replace_it_with/g
:x
EOEX