Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== recursively list files and directories ====== ===== find ===== * ''find . -print'' - nice because the full path is shown * ''find . -type f -print'' - only show files * ''find . -type d -print'' - only show directories * ''find . -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 ===== See Also ===== * [[tree]] docs/bash/recursively_list_files_and_directories.txt Last modified: 2013/05/09 11:04by billh