1. #!/usr/bin/env aspl 2. #ENVARG= -groupingclass SYSENVGROUP -wsname TRANSIENT -singlepass 3. 4. ;;*********************************************************************** 5. ;; wasreaper.aspl 6. ;; Reap WebSphere startNode.sh and stopNode.sh then compare the 7. ;; environment variables used by their processes and show the difference 8. ;; Copyright © 2024 Bassem W. Jamaleddine 9. ;; 10. ;;*********************************************************************** 11. 12. ks varname varvalue chksum ppdd ffl 13. displayoff 14. print ################################################################### 15. print # REAPING ENV OF WebSphere startNode.sh and stopNode.sh 16. print ################################################################### 17. w1 = ggreapenvbypid(program,/opt/IBM/WebSphere/AppServer/bin/startNode.sh,onlychanged,1) 18. w2 = ggreapenvbypid(program,/opt/IBM/WebSphere/AppServer/bin/stopNode.sh,onlychanged,1) 19. displayon 20. print ################################################################### 21. print # COMPARING WebSphere startNode.sh and stopNode.sh Processes Internals 22. print ################################################################### 23. gU,`ks~ w1 w2 24. 25. endscript 26.