There are a lot of directories and files in the directory / home / user / files . In each directory, including the above, are files. It is necessary from the above directory to get a list of all directories and subdirectories enclosed in them, as well as files. Get as list:
/path/to/file.ext
As I understood, the line will suit me:
find . -name "*" -type f -exec ls -l {} \; But it displays the result in "ls -l", but it cannot be parsed.