Como posso listar subdiretórios recursivamente?

40

O óbvio

ls -dR

não funciona.

Atualmente estou usando

find /path/ -type d -ls

mas a saída não é o que eu preciso (listagem simples de subpastas)

Existe uma saída?

    
por Nemo 25.02.2012 / 23:58

6 respostas

56

Supondo que você queira apenas o nome de cada diretório:

find /path/ -type d -print
    
por 26.02.2012 / 00:22
9

Eu estava procurando a mesma coisa no passado e descobri isso:

tree.sh

#!/bin/sh
#######################################################
#  UNIX TREE                                                            
#  Version: 2.3                                       
#  File: ~/apps/tree/tree.sh                          
#                                                     
#  Displays Structure of Directory Hierarchy          
#  -------------------------------------------------  
#  This tiny script uses "ls", "grep", and "sed"      
#  in a single command to show the nesting of         
#  sub-directories.  The setup command for PATH       
#  works with the Bash shell (the Mac OS X default).  
#                                                     
#  Setup:                                             
#     $ cd ~/apps/tree                                
#     $ chmod u+x tree.sh                             
#     $ ln -s ~/apps/tree/tree.sh ~/bin/tree          
#     $ echo "PATH=~/bin:\${PATH}" >> ~/.profile      
#                                                     
#  Usage:                                             
#     $ tree [directory]                              
#                                                     
#  Examples:                                          
#     $ tree                                          
#     $ tree /etc/opt                                 
#     $ tree ..                                       
#                                                     
#  Public Domain Software -- Free to Use as You Like  
#  http://www.centerkey.com/tree  -  By Dem Pilafian  
#######################################################

echo
if [ "$1" != "" ]  #if parameter exists, use as base folder
   then cd "$1"
   fi
pwd
ls -R | grep ":$" |   \
   sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/   /' -e 's/-/|/'
# 1st sed: remove colons
# 2nd sed: replace higher level folder names with dashes
# 3rd sed: indent graph three spaces
# 4th sed: replace first dash with a vertical bar
if [ 'ls -F -1 | grep "/" | wc -l' = 0 ]   # check if no folders
   then echo "   -> no sub-directories"
   fi
echo
exit

Eu queria um que listasse os arquivos e aprendi sobre sed e escrevi isso:

fulltree.sh

#!/bin/sh
#############################################
# Script that displays a recursive formatted folder and file listing
# @author Corbin
# @site iamcorbin.net
#Folder Seperator
BREAK='-------------------------------------------------------------------------------------'

#Optional: if a folder is passed as an argument, run fulltree on that folder rather than the current folder
if [ "$1" != "" ]
   then cd "$1"
   fi
pwd

## Recursive Directory Listing with files
 # 1- preserve directories from being removed in 2 & 3
 # 2- strip first 4 columns
 # 3- strip size and date
 # 4- prepend '  -- ' on each line
 # 5- remove '  -- ' from directories
 # 6- remove extra lines
 # 7- Insert a line break after directories
 # 8- Put a | at the beginning of all lines
 # 9- Indent and process 1st level sub dirs
 #10- Indent and process 2nd level sub dirs
ls -Rhl | sed \
    -e 's/^\.\//x x x x 00:00 |-/' \
    -e 's/^\([^\ ]*.\)\{4\}//' \
    -e 's/.*[0-9]\{2\}:[0-9]\{2\}//' \
    -e 's/^/  -- /' \
    -e 's/\ \ --\ \ |-//'  \
    -e '/--\ $/ d' \
    -e '/^[^ ]/ i\'$BREAK \
    -e 's/^/| /' \
| sed -e '/[^/]*\//,/'$BREAK'/ s/^|/\t&/' -e '/^\t/,/'$BREAK'/ s/'$BREAK'/\t&/' -e 's/[^/]*\//\t\| /' \
| sed -e '/[^/]*\//,/'$BREAK'/ s/^\t|/\t&/' -e '/^\t\t/,/'$BREAK'/  s/'$BREAK'/\t&/' -e 's/[^/]*\//\t\t\| /' \
| sed -e '/[^/]*\//,/'$BREAK'/ s/^\t\t/\t&/' -e 's/[^/]*\//\t\t\t\| /'
echo $BREAK
    
por 26.02.2012 / 03:30
9

Você pode obter o pacote "tree", tanto no ArchLinux quanto no Ubuntu, ele é chamado de "tree"

Para que, se você estiver em ~ /, você possa fazer tree -d e obter uma listagem completa de diretórios (em uma estrutura de árvore) para todo o que está em ~ /

    
por 26.02.2012 / 00:05
3

O OP não especifica qual formato de saída eles querem "listagem simples de subpastas").

[ 15:53. root@prod-2 /var]% ls -lDR | grep ':$' | head
 .:
 ./account:
 ./cache:
 ./cache/coolkey:
 ./cache/fontconfig:
 ./cache/logwatch:
 ./cache/man:
 ./cache/man/X11R6:
 ./cache/man/X11R6/cat1:
 ./cache/man/X11R6/cat2:...

Opcionalmente, remova o : com |sed -e 's/:$//' ou formate-o com |awk '{printf("%-92s \n",$0)}' etc.

    
por 26.02.2012 / 01:01
1

Com zsh e qualificadores da glob :

print -rl /path/**/*(D/)

para excluir diretórios ocultos:

print -rl /path/**/*(/)
    
por 12.09.2015 / 16:55
0

Para o bash:

shopt -s globstar nullglob dotglob
echo /path/**/*/

Os últimos diretórios de barra / lista apenas.

Opção globstar ativa ** .
A opção nullglob remove um * que não corresponde a nada.
Opção dotglob para incluir arquivos que começam com um ponto (arquivos ocultos)

    
por 19.02.2016 / 11:32