How to recursively list full path of files and directories in Linux one per line?

You can use Linux ls command with -R option to recursively list files and directories in Linux bash shell. In order to list the full path of the files and directories, combine the ls -R command with awk as shown below.