I am thinking of using sed for reading .properties file, but was wondering if there is a smarter way to do that from bash script?
|
|
|||||
|
|
|
In Perl:
Not tested, and should be more tolerant of leading/trailing spaces, comments etc., but you get the idea. Whether you use Perl (or another language) over Note that (as highlighted in the comments) Java properties files can have multiple forms of delimiters (although I've not seen anything used in practice other than colons). Hence the split uses a choice of characters to split upon. Ultimately, you may be better off using the Config::Properties module in Perl, which is built to solve this specific problem. |
||||
|
|
|
If you want to use sed to parse -any- .properties file, you may end up with a quite complex solution, since the format allows line breaks, unquoted strings, unicode, etc: http://en.wikipedia.org/wiki/.properties One possible workaround would using java itself to preprocess the .properties file into something bash-friendly, then source it. E.g.: .properties file:
would be turned into:
Of course, that would yield worse performance, but the implementation would be simpler/clearer. |
||||||
|
|
|
One option is to write a simple Java program to do it for you - then run the Java program in your script. That might seem silly if you're just reading properties from a single properties file. However, it becomes very useful when you're trying to get a configuration value from something like a Commons Configuration |
||
|
|
|
|
I have some shell scripts that need to look up some .properties and use them as arguments to programs I didn't write. The heart of the script is a line like this:
Effectively, that's grep for the key and filter out the stuff before the colon and after any hash. |
|||
|
|
|
|
if you want to use "shell", the best tool to parse files and have proper programming control is (g)awk. Use sed only simple substitution. |
||
|
|
|
|
I have sometimes just sourced the properties file into the bash script. This will lead to environment variables being set in the script with the names and contents from the file. Maybe that is enough for you, too. If you have to do some "real" parsing, this is not the way to go, of course. |
||
|
|
|
|
Hmm, I just run into the same problem today. This is poor man's solution, admittedly more straightforward than clever;)
then, a property 'my.java.prop' can be accessed as $my_java_prop. This can be done with sed or whatever, but I finally went with ruby for its 'irb' which was handy for experimenting. It's quite limited (dots should be replaced only before '=',no comment handling), but could be a starting point. @Daniel, I tried to source it, but Bash didn't like dots in variable names. |
|||
|
|
