Comment lister les fichiers par propriétaire de fichier dans la commande Unix?


14

Je dois répertorier tous les fichiers de mon WD triés alphabétiquement par nom de propriétaire de fichier. Est-ce que ls a quelque chose pour ça?

Réponses:


12

La solution canonique:

ls -l | sort -k3,3

Un seul 3 (comme dans «-k3») dirait sortd'utiliser la colonne 3 à la fin de la ligne pour le tri. Cela vous permet de faire des tris plus avancés comme ls -l | sort -k3,3 -rnk5,5, qui trieraient vos fichiers d'abord par nom d'utilisateur, puis par taille, le plus grand en premier.

Comme toujours, pour plus d'informations, exécutez man sort.


Est-ce récursif?

@Michel: non, mais je ne pense pas que cela soit voulu par le PO.
bukzor

5

j'utiliserais find -printf "%u %h/%f\n" | sort


find: bad option -printf
Martin Carpenter

find --version find (GNU findutils) 4.4.2 Copyright (C) 2007 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Eric B. Decker, James Youngman, and Kevin Dalley. Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b Features enabled: D_TYPE O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS() CBO(level=0)

1

Je ne pense pas qu'il y ait quoi que ce soit intégré, mais vous pouvez assembler un peu un hack:

find . -ls | sort -k5

Cela fonctionne parce que sur mon installation, la cinquième colonne ( -k5) de sortie findest le nom d'utilisateur. De toute évidence, ce n'est pas portable.


dois-je même utiliser find? J'ai essayé ls -l | sort -k3et je pense que cela a fonctionné.

find traite également les fichiers et dossiers dans les sous

1

ls -l | awk '{print $3"\t\t"$9}' | sortle ferait aussi. La première colonne est le nom d'utilisateur, la seconde est le nom du fichier / répertoire:

[ 09:20 jon@host /home ]$ ls -l | awk '{print $3"\t\t"$9}' | sort

bettina         bettina
caldavd         caldavd
davical_app     postgres
davical_dba     davical_dba
istat           istat
jared           jared
jason           jason
jon             jon
jon             repo
root            lost+found
root            SCN_RepositoryB.tar.gz
tomcat          tomcat

Cela afficherait uniquement les noms de fichiers / dir (triés par propriétaire):

[ 09:24 jon@host /home ]$ ls -l | awk '{print $3"\t\t"$9}' | sort | awk '{print $2}'

bettina
caldavd
postgres
davical_dba
istat
jared
jason
jon
repo
lost+found
SCN_RepositoryB.tar.gz
tomcat

Et cela les montrerait triés mais sur une seule ligne:

[ 09:26 jon@host /home ]$ ls -l | awk '{print $3"\t\t"$9}' | sort | awk '{print $2}' | tr "\n" " "
bettina caldavd postgres davical_dba istat jared jason jon repo lost+found SCN_RepositoryB.tar.gz tomcat

0
ls -l | sort -k3

Pas besoin de préciser 3après -k3

kracekumar@python-lover:~$ ls -l /tmp | sort -k3  
total 36
drwx------ 2 gdm        gdm        4096 2011-10-14 08:36 orbit-gdm
drwx------ 2 gdm        gdm        4096 2011-10-14 08:36 pulse-    2L9K88eMlGn7
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 keyring-4O5hSc
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 pulse-SBBBfzrceWvC
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 ssh-UkESZoNj1595
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 virtual-kracekumar.5D8Mlv
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:43 orbit-kracekumar
drwx------ 2 root       root       4096 2011-10-14 08:36 pulse-PKdhtXMmr18n
drwxr-xr-x 3 www-data   www-data   4096 2011-10-14 08:36 www-data-temp-aspnet-0
kracekumar@python-lover:~$ ls -l /tmp | sort -k3,3
total 36
drwx------ 2 gdm        gdm        4096 2011-10-14 08:36 orbit-gdm
drwx------ 2 gdm        gdm        4096 2011-10-14 08:36 pulse-2L9K88eMlGn7
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 keyring-4O5hSc
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 pulse-SBBBfzrceWvC
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 ssh-UkESZoNj1595
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:36 virtual-kracekumar.5D8Mlv
drwx------ 2 kracekumar kracekumar 4096 2011-10-14 08:43 orbit-kracekumar
drwx------ 2 root       root       4096 2011-10-14 08:36 pulse-PKdhtXMmr18n
drwxr-xr-x 3 www-data   www-data   4096 2011-10-14 08:36 www-data-temp-aspnet-0
kracekumar@python-lover:~$
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.