Hi all, I need to get an hierarchical listing of my oracle directories. I don't see a tree command, is there something comparable for aix 4.3.3? thanks, Kathy
Not familiar with the tree command but find . -type d will list all the directories below your current directory, or you can swop the "." for a directory to list any directories below that one. HTH
I also came across this command, interesting also. ls -la /oracle/product/8.0.5/*/* |awk '{ print $NF }' > /oracle/ls_output.lst Thanks,
Forum Rules
Bookmarks