在有限的shell中列出文件和文件夹层次结构

时间:2014-12-12 01:11:10

标签: linux bash busybox

我正在开发一个使用非常有限的linux busybox shell的项目。

我的shell没有findawkgrep之类的命令,我试图获取该机器上的完整文件列表。< / p>

到目前为止还没有运气,但是正在运行ls -la /*完成了一半的工作并且显示了一层深的文件 您是否知道如何以递归方式运行ls来获取文件和文件夹的完整列表?也许您知道其他方法吗?

编辑#1:

我的ls没有-R选项。

ls -1 -LR /

ls: invalid option -- R
BusyBox v1.01 multi-call binary

Usage: ls [-1AacCdeilnLrSsTtuvwxXk] [filenames...]

List directory contents

Options:
    -1  list files in a single column
    -A  do not list implied . and ..
    -a  do not hide entries starting with .
    -C  list entries by columns
    -c  with -l: show ctime
    -d  list directory entries instead of contents
    -e  list both full date and full time
    -i  list the i-node for each file
    -l  use a long listing format
    -n  list numeric UIDs and GIDs instead of names
    -L  list entries pointed to by symbolic links
    -r  sort the listing in reverse order
    -S  sort the listing by file size
    -s  list the size of each file, in blocks
    -T NUM  assume Tabstop every NUM columns
    -t  with -l: show modification time
    -u  with -l: show access time
    -v  sort the listing by version
    -w NUM  assume the terminal is NUM columns wide
    -x  list entries by lines instead of by columns
    -X  sort the listing by extension

2 个答案:

答案 0 :(得分:1)

BusyBox页面我可以看到ls选项-R

  

-R List子目录递归

所以你可以写:

$ ls -R /

由于您没有-R选项,您可以尝试使用这样的递归shell函数:

myls() {
    for item in "$1"/* "$1"/.*; do
        [ -z "${item##*/.}" -o -z "${item##*/..}" -o -z "${item##*/\*}" ] && continue
        if [ -d "$item" ]; then
            echo "$item/"
            myls "$item"
        else
            echo "$item"
        fi    
    done
}

然后你可以在没有参数的情况下调用它来从/开始。

$ myls

如果您想从/home开始:

$ myls /home

如果你想制作剧本:

#!/bin/sh

# copy the function here

myls "$1"

解释

  • [ -z "${item##*/.}" -o -z "${item##*/..}" -o -z "${item##*/\*}" ] && continue 此行只排除了目录...以及未展开的项目(如果文件夹中没有文件,则shell将模式保留为<some_folder>/*)。
    这有一个限制。 它不会显示名称只是*的文件。
  • 如果文件是目录,它会打印目录名称,并在末尾添加/以改善输出,然后递归调用该目录的函数。
  • 如果该项目是常规文件,则只打印文件名并转到下一个文件夹。

答案 1 :(得分:-1)

使用

ls -1 -LR /

垂直格式也很好看