如何递归列出子目录?


47

明显的

ls -dR

不起作用。

我目前正在使用

find /path/ -type d -ls

但是输出不是我所需要的(子文件夹的清单)

有出路吗?


这是一个漂亮的bash脚本,用于打印带有颜色的目录树:mama.indstate.edu/users/ice/bash/btree易于安装,无需root访问。
2015年

1
真正的问题应该是:为什么不起作用ls -dR
mastaBlasta

真正的问题应该包括对“工作”的描述,以便我们可以回答ls -dR“不工作”的原因。ls -dR实际上按照文档中的说明进行操作:“ -d目录被列为纯文件(不以递归方式搜索)。” ls -R另一方面,它会递归列出子目录。
LarsH

Answers:


63

假设您只需要每个目录的名称:

find /path/ -type d -print

9
+1。顺便说一句,'-print'arg是可选的-它是默认值。如果需要特定的列表格式,也可以将其输入xargs以使用任何所需的选项运行ls,例如find /path/ -type d -print0 | xargs -0 -r ls -ld。请注意-print0表示NULL终止输出,以及匹配的-0 xargs arg。
cas 2012年

而且,如果您偶然在Windows和cygwin上运行此程序,则Windows已经有一个find命令,因此您可能应该指定cygwin的bin文件夹的路径。
phyatt 2015年

12

我过去一直在寻找相同的东西,发现了这一点:

#!/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

我想要一个也列出文件的文件,然后我学习了sed并编写了此代码:

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

ls -R | grep "^[.]/" | sed -e "s/:$//" -e "s/[^/]*[/]/--/g" -e "s/^/ |/"我处理tree.sh的更新,以处理一些极端情况,最新发布于:centerkey.com/tree
Dem Pilafian

9

您可以在ArchLinux和Ubuntu上获得“树”包,称为“树”包

因此,如果您在〜/中,则可以tree -d获取〜/中所有内容的完整目录列表(以树结构显示)


我需要纯文本,用换行符分隔的子目录列表,而树似乎添加了其“树”结构。而且我似乎找不到找到禁用它的标志。
Nemo 2012年

2
@ Capt.Nemo:对于普通列表,请使用:tree -dfi ...您可以添加--noreport以隐藏总目录数的最终显示。
Peter.O 2012年

3

OP没有指定所需的输出格式(“子文件夹的纯列表”除外)。

[ 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:...

任选地删除尾随:|sed -e 's/:$//'或与格式化|awk '{printf("%-92s \n",$0)}'



0

对于bash:

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

最后一个斜杠/仅列出目录。

选项globstar激活**
Option nullglob删除不匹配的*。
选择dotglob包含以点开头的文件(隐藏文件)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.