243

这类似于这个问题,但我想在 unix 中包含相对于当前目录的路径。如果我执行以下操作:

ls -LR | grep .txt

它不包括完整路径。例如,我有以下目录结构:

test1/file.txt
test2/file1.txt
test2/file2.txt

上面的代码将返回:

file.txt
file1.txt
file2.txt

如何使用标准 Unix 命令包含相对于当前目录的路径?

4

14 回答 14

332

使用查找:

find . -name \*.txt -print

在使用 GNU find 的系统上,像大多数 GNU/Linux 发行版一样,您可以省略 -print。

于 2008-10-29T03:34:44.853 回答
75

tree, 与-f(完整路径)和-i(无缩进线)一起使用:

tree -if --noreport .
tree -if --noreport directory/

然后,您可以使用它grep来过滤掉您想要的那些。


如果找不到该命令,您可以安装它:

键入以下命令在 RHEL/CentOS 和 Fedora linux 上安装树命令:

# yum install tree -y

如果您使用的是 Debian/Ubuntu,Mint Linux 在您的终端中键入以下命令:

$ sudo apt-get install tree -y
于 2010-04-28T00:45:02.277 回答
25

试试find。您可以在手册页中准确查找它,但它有点像这样:

find [start directory] -name [what to find]

所以对于你的例子

find . -name "*.txt"

应该给你你想要的。

于 2008-10-29T03:33:53.527 回答
10

您可以使用 find 代替:

find . -name '*.txt'
于 2008-10-29T03:36:09.733 回答
5

要使用 find 命令获取所需文件的实际完整路径文件名,请将其与 pwd 命令一起使用:

find $(pwd) -name \*.txt -print
于 2011-12-30T05:49:47.030 回答
5

这就是诀窍:

ls -R1 $PWD | while read l; do case $l in *:) d=${l%:};; "") d=;; *) echo "$d/$l";; esac; done | grep -i ".txt"

但是它通过解析 . 来“犯罪” ls,这被 GNU 和 Ghostscript 社区认为是不好的形式。

于 2016-03-14T21:41:55.333 回答
4
DIR=your_path
find $DIR | sed 's:""$DIR""::'

'sed' 将从所有 'find' 结果中删除 'your_path'。并且您收到相对于“DIR”路径的信息。

于 2009-10-15T11:04:31.737 回答
1

这是一个 Perl 脚本:

sub format_lines($)
{
    my $refonlines = shift;
    my @lines = @{$refonlines};
    my $tmppath = "-";

    foreach (@lines)
    {
        next if ($_ =~ /^\s+/);
        if ($_ =~ /(^\w+(\/\w*)*):/)
        {
            $tmppath = $1 if defined $1;    
            next;
        }
        print "$tmppath/$_";
    }
}

sub main()
{
        my @lines = ();

    while (<>) 
    {
        push (@lines, $_);
    }
    format_lines(\@lines);
}

main();

用法:

ls -LR | perl format_ls-LR.pl
于 2009-11-27T09:45:37.537 回答
1

您可以创建一个 shell 函数,例如在您的.zshrcor中.bashrc

filepath() {
    echo $PWD/$1
}

filepath2() {
    for i in $@; do
        echo $PWD/$i
    done
}

显然,第一个仅适用于单个文件。

于 2011-03-30T18:50:16.967 回答
1

从根目录“/”开始搜索,在文件系统上找到名为“filename”的文件。“文件名”

find / -name "filename" 
于 2013-02-23T02:11:36.980 回答
1

如果您想保留输出中带有文件大小等 ls 的详细信息,那么这应该可以工作。

sed "s|<OLDPATH>|<NEWPATH>|g" input_file > output_file
于 2013-08-21T14:41:25.307 回答
1

fish shell中,您可以这样做以递归地列出所有pdf,包括当前目录中的pdf:

$ ls **pdf

如果您想要任何类型的文件,只需删除“pdf”。

于 2019-04-23T17:31:59.020 回答
0

您可以像这样实现此功能
首先,使用指向目标目录的 ls 命令。稍后使用 find 命令过滤结果。从你的情况来看,这听起来像 - 文件名总是以一个单词开头 file***.txt

ls /some/path/here | find . -name 'file*.txt'   (* represents some wild card search)
于 2014-04-13T05:49:50.870 回答
0

在我的情况下,使用树命令

相对路径

tree -ifF ./dir | grep -v '^./dir$' | grep -v '.*/$' | grep '\./.*' | while read file; do
  echo $file
done

绝对路径

tree -ifF ./dir | grep -v '^./dir$' | grep -v '.*/$' | grep '\./.*' | while read file; do
  echo $file | sed -e "s|^.|$PWD|g"
done
于 2020-03-05T09:33:49.467 回答