Well, it started as a place for middleware notes, tips and tricks, but really, this is a place for me to list out some of the general notes, etc I have for myself. If anyone else finds them useful... Great! If not, at least I have a clipboard of solutions for me...
Wednesday, December 24, 2008
Easier WLST syntax
An easy way to simplify WLST script syntax while working in interactive mode is to use the easeSyntax() command after you log in.
Using the Example from Satya Ghattu's blog ( http://satya-ghattu.blogspot.com/2008/11/easing-wlst-syntax-while-navigating.html )
cd(“/Servers/testServer”)
ls()
After executing easeSyntax() to navigate around you will use.
cd /Servers/testServer
ls
piece of cake. Thanks for the tidbit, Satya. This will be a great timesaver for me as I am working on developing new WLST scripts.
- Brian
Subscribe to:
Post Comments (Atom)
1 comment:
glad I could help .. :-)
Post a Comment