Archives for: September 2010, 16
Splitting text using Python
September 16th, 2010Created a script just to test how to split text using Python. First I have to split on the delimiter '__', then on the '.'. #!/usr/bin/pythonpropertyFilename="commons-ear__R01_INC_002.properties"print propertyFilenameversionWithFileExt = prop… more »
Adding a description when installing an application using wsadmin
September 16th, 2010Using wsadmin to install an application I wanted to add a description to an application edition. Was not able to find any documentation telling me what are valid parameters to apply to the options string, so I just tried "-description", returning the err… more »