I often use this list command in Unix (AIX / KSH):
ls -Artl
It displays the files as this:
-rw-r--r-- 1 myuser mygroup 0 Apr 2
I wrote a shell script called fullpath that contains this code, use it everyday:
#!/bin/sh for i in $* ; do echo $(pwd)/$i done
Put it somewhere in your PATH, and make it executable(chmod 755 fullpath) then just use fullpath file_or_directory