I believe this is common very weird anomaly in solaris shell scripting.<br /><br />For example using regex like this may fail: <br />tr [:upper:][:lower:]<br /><br />It working better when using format:<br />tr "[A-Z]" "[a-z]"
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
http://forums.hyperic.com/jiveforums/thread.jspa?messageID=24013&tstart=0#24013
I believe this is common very weird anomaly in solaris shell scripting.<br /><br />For example using regex like this may fail: <br />tr [:upper:] [:lower:]<br /><br />It working better when using format:<br />tr "[A-Z]" "[a-z]"