recursively list files and directories
find
find . -print
- nice because the full path is shownfind . -type f -print
- only show filesfind . -type d -print
- only show directoriesfind . -L -print
- also follow symbolic links
ls
`which ls` -R1 .
- ok, although this one groups directories and doesn't list the full path on each line