Sunday 20 July 2008

Recursive Directory Listing

If you look at Java packages, you have a lot of nested directory structures. You need to be able to see subdirectory content and structure quickly.

Windows: dir /S [dirname]
Unix: ls -R [dirname]

The concept of "recursive flags" doesn't map directly to Windows programs.

No comments: