You can use use readlink command for that. First use find command to get files in the current directory. Then on the list to readlink. For example:
$ find . -maxdepth 1 -type f | xargs readlink -f
Which will list in a single column all the files.
You can use use readlink command for that. First use find command to get files in the current directory. Then on the list to readlink. For example:
$ find . -maxdepth 1 -type f | xargs readlink -f
Which will list in a single column all the files.