11

How can I display only Permissions and file names using ls command and how to list all files in a directory including full path, owner, group and permissions for each file?

3 Answers 3

10

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.

5
ls | xargs stat --printf "$(pwd)/%n %U %G %A \n"
1
  • 1
    This seems to me to be the most direct way to accomplish the result
    – Leo Simon
    Commented Jun 27, 2016 at 17:11
5

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.

You must log in to answer this question.