Quantcast

Have a Question?

If you have any question you can ask below or enter what you are looking for!

How do I list the full path in Linux?

Use the find command. By default it will recursively list every file and folder descending from your current directory, with the full (relative) path. If you want the full path, use: find "$(pwd)" . If you want to restrict it to files or folders only, use find -type f or find -type d , respectively.

techfaq.online