How to display only Permissions and file names using ls command?
Solution 1:
you can use GNU find
command instead of ls
unless you are doing homework
find /path -printf "%f: %p: %u: %g %m (%M) \n"
check the man page of find
more the meaning of those specifiers.
Solution 2:
You should actually do it that way
find /path -printf "%f:%p:%u:%g:%m\n"
That way you get also the permissions and each file gets listed on one line.
Solution 3:
ls | xargs stat --printf "$(pwd)/%n %U %G %A \n"