Listing absolute file paths in a directory

Tutorial Icon: 
I recently ran into a situation where I needed to list a the absolute path to a file. I was not able to use find or grep. I found useful command below and believe it should be added to any Unix sysadmins toolbox. Here is the command.

for i in `ls -1`; do echo $PWD/$i; done

Here is a short description of what it does:
This is a for loop loops through each line in `ls -1` (This lists one file per line). It then prints out the current working directory (PWD) followed by the variable i which contains each item in the list.