Hey dudes,
This question is quite similar to http://stackoverflow.com/questions/246215/how-can-i-list-files-with-their-absolute-path-in-linux
I want to get the name of file or folder with absolute path and date modified.
This command almost does it:
ls -lR /foo/bar | awk '{print $6,$7,$8,$9}'
But it doesnt show the absolute path.
Regards Stollan