vote up 1 vote down star

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?

flag

Why not use something less heinous than bash scripting, like Perl or Python? – Bears will eat you Nov 5 at 18:10
That is a wonderful question :) In this specific I wanted to see if there is a simple way that I am missing(don't know about\too stupid to think of etc.) – Alex N. Nov 9 at 16:14

7 Answers

vote up 1 vote down check

In Perl:

while(<STDIN>) {
   ($prop,$val)=split(/[=: ]/, $_, 2);
   # and do stuff for each prop/val
}

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 sed is really dependent upon what you want to do with the properties once you've parsed them out of the file.

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.

link|flag
That won't necessarily work. The keys and values of the properties file can be delimited by spaces, the = character, or by the : character (there might be other ways too). I believe you can also mix and match which delimiters you use in a single properties file. – Thomas Owens Nov 7 at 19:09
@Thomas - noted. Although in practice I don't recall seeing anything other than colons used. – Brian Agnew Nov 7 at 23:08
vote up 1 vote down

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:

line_a : "ABC"
line_b = Line\
         With\ 
         Breaks!
line_c = I'm unquoted :(

would be turned into:

line_a="ABC"
line_b=`echo -e "Line\nWith\nBreaks!"`
line_c="I'm unquoted :("

Of course, that would yield worse performance, but the implementation would be simpler/clearer.

link|flag
1  
line_b=$'Line\nWith\nBreaks!' – Dennis Williamson Nov 5 at 19:02
Dennis, it didn't work somehow: pastebin.com/m503047e8 . Am I missing something? – PaoloVictor Nov 5 at 19:13
vote up 1 vote down

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 CompositeConfiguration backed by properties files. For a time, we went the route of implementing what we needed in our shell scripts to get the same behavior we were getting from CompositeConfiguration. Then we wisened up and realized we should just let CompositeConfiguration do the work for us! I don't expect this to be a popular answer, but hopefully you find it useful.

link|flag
vote up 0 vote down

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:

dbUrlFile=$(grep database.url.file etc/zocalo.conf | sed -e "s/.*: //" -e "s/#.*//")

Effectively, that's grep for the key and filter out the stuff before the colon and after any hash.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Hmm, I just run into the same problem today. This is poor man's solution, admittedly more straightforward than clever;)

decl=`ruby -ne 'puts chomp.sub(/=(.*)/,%q{="\1";}).gsub(".","_")' my.properties`
eval $decl

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.

link|flag

Your Answer

Get an OpenID
or

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