サブディレクトリを再帰的にリストするにはどうすればよいですか?


48

明らか

ls -dR

動作しません。

現在使用しています

find /path/ -type d -ls

しかし、出力は私が必要なものではありません(サブフォルダの単純なリスト)

抜け道はありますか?


ディレクトリツリーを色付きで印刷するための素敵なbashスクリプトを次に示します。mama.indstate.edu / users / ice/ bash/ btreeインストールが簡単で、ルートアクセスは不要です。
aap

1
本当の質問は次のとおりls -dRです。なぜ機能しないのですか?
mastaBlasta

実際の質問には、ls -dR「機能しない」という理由に答えられるように、「機能する」という説明を含める必要があります。ls -dR実際には、ドキュメントに書かれていることを実行します。「-dディレクトリはプレーンファイルとしてリストされます(再帰的に検索されません)。」ls -R一方リストのサブディレクトリを再帰的に。
-LarsH

回答:


64

各ディレクトリの名前だけが必要な場合:

find /path/ -type d -print

9
+1。ところで、「-print」引数はオプションです-これはデフォルトです。また、特定のリスト形式が必要な場合は、xargsに入力して、必要なオプション(たとえば、)でlsを実行できますfind /path/ -type d -print0 | xargs -0 -r ls -ld。NULLで終了する出力の-print0と、対応する-0 xargs argに注意してください。
cas

偶然にWindowsとcygwinでこれを実行している場合、Windowsにはすでにfindコマンドがあります。そのため、おそらくcygwinのbinフォルダーへのパスを指定する必要があります。
-phyatt

12

私は過去に同じものを探していましたが、これを見つけました:

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

ファイルもリストしたものが欲しかったので、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

「tree」パッケージを入手できます。ArchLinuxとUbuntuの両方で「tree」と呼ばれます

〜/にいる場合は、〜/にあるtree -dすべてのものの完全なディレクトリリスト(ツリー構造)を取得できます。


プレーンテキスト、サブディレクトリの改行区切りリストが必要ですが、ツリーには「ツリー」構造が追加されているようです。そして、私はそれを無効にするフラグを見つけることができないようです。
ニモ

2
@ Capt.Nemo:単純なリストの場合:tree -dfi ...を追加--noreportして、合計ディレクトリ数の最終表示を抑制することができます
Peter.O

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有効になり**ます。
オプションnullglobは、何にも一致しない*を削除します。ドットで始まるファイル(隠しファイル)を含める
オプションdotglob

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.