that's a good idea. I'll create a macrodef to do just that.
--
View this message in context:
http://ant.1045680.n5.nabble.com/determine-what-shellscript-just-ran-tp5143649p5148852.html
Sent from the Ant - Users mailing list archive at Nabble.com.
---
You're replacing the entire "Test2=" line with the string
"test2=x" which obviously doesn't contain the tab characters.
You should probably investigate more sophisticated ways of preserving the
original tabs like
match="^([ \t]*test2[ \t]*=)(.*)$"
replace="\1xxx"
I haven't tested it bu