以相对于当前目录的路径递归地在Linux CLI中列出文件

这类似于这个问题,但我想包含相对于unix中的当前目录的路径。如果我这样做:

ls -LR | grep .txt

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

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

上面的代码将返回:

file.txt
file1.txt
file2.txt

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

352532 次浏览

find试试。你可以在手册页中找到它,但它是这样的:

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

举个例子

find . -name "*.txt"

应该给你你想要的。

使用找到:

find . -name \*.txt -print

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

你可以用find代替:

find . -name '*.txt'
DIR=your_path
find $DIR | sed 's:""$DIR""::'

'sed'将从所有'find'结果中删除'your_path'。你接收相对于DIR路径的。

下面是一个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

使用tree,带有-f(全路径)和-i(无缩进行):

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

然后你可以使用grep来过滤掉你想要的。


如果没有找到命令,可以安装:

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

# yum install tree -y

如果你使用Debian/Ubuntu,在你的终端输入以下命令:

$ sudo apt-get install tree -y

你可以创建一个shell函数,例如在你的.zshrc.bashrc中:

filepath() {
echo $PWD/$1
}


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

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

要使用find命令获得所需文件的实际完整路径文件名,请使用pwd命令:

find $(pwd) -name \*.txt -print

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

find / -name "filename"

如果你想保留详细信息,如文件大小等在你的输出,那么这应该工作。

sed "s|<OLDPATH>|<NEWPATH>|g" input_file > output_file
你可以像这样实现这个功能 首先,使用ls命令指向目标目录。稍后使用find命令过滤它的结果。 从你的情况来看,文件名总是以单词开头 file***.txt < / p >
ls /some/path/here | find . -name 'file*.txt'   (* represents some wild card search)

这很管用:

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

但是它通过解析ls来“犯罪”,尽管,这被GNU和Ghostscript社区认为是糟糕的形式。

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

$ ls **pdf

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

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

相对路径

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