I want to pipe the output of a "template" file into MySQL, the file having variables like ${dbName} interspersed. What is the commandline utility to replace these instances and dump the output to standard output?
|
|
||||
|
|
|
Sed! Given template.txt:
The number is ${i}
The word is ${word}
we just have to say:
Thanks to Jonathan Leffler for the tip to pass multiple -e arguments to the same sed invocation. |
|||||||||||||
|
|
Use File template.txt:
File script.sh:
Output:
|
|||||||
|
|
If you are open to using Perl, that would be my suggestion. Although there are probably some sed and/or AWK experts that probably know how to do this much easier. If you have a more complex mapping with more than just dbName for your replacements you could extend this pretty easily, but you might just as well put it into a standard Perl script at that point.
A short Perl script to do something slightly more complicated (handle multiple keys):
If you name the above script as replace-script, it could then be used as follows:
|
|||||||||
|
|
template.txt
data.sh
parser.sh
parsed_file.txt
|
||||
|
|
|
I was thinking about this again, given the recent interest, and I think that the tool that I was originally thinking of was
|
|||
|
|
|
It can be done in bash itself if you have control of the configuration file format. You just need to source (".") the configuratiopn file rather than subshell it. That ensures the variables are created in the context of the current shell (and continue to exist) rather than the subshell (where the variable disappear when the subshell exits).
If your config file cannot be a shell script, you can just 'compile' it before executing thus (the compilation depends on your input format).
In your specific case, you could use something like:
Then pipe the output of go.bash into mysql and voila, hopefully you won't destroy your database :-). |
|||||
|
|
I found this thread while wondering the same thing. It inspired me to this (careful with the backticks)
|
|||||
|
|
file.tpl:
script.sh:
|
|||
|
|