这与this question类似,但我希望在unix中包含相对于当前目录的路径。如果我执行以下操作:
ls -LR | grep .txt
它不包括完整路径。例如,我有以下目录结构:
test1/file.txt
test2/file1.txt
test2/file2.txt
上面的代码将返回:
file.txt
file1.txt
file2.txt
如何使用标准Unix命令包含相对于当前目录的路径?
答案 0 :(得分:287)
使用find:
find . -name \*.txt -print
在使用GNU find的系统上,像大多数GNU / Linux发行版一样,你可以省略-print。
答案 1 :(得分:70)
使用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
答案 2 :(得分:25)
试试find
。您可以在手册页中查找它,但它有点像这样:
find [start directory] -name [what to find]
所以你的例子
find . -name "*.txt"
应该给你你想要的东西。
答案 3 :(得分:9)
您可以使用find代替:
find . -name '*.txt'
答案 4 :(得分: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社区视为不良形式。
答案 5 :(得分:4)
DIR=your_path
find $DIR | sed 's:""$DIR""::'
'sed'将从所有'find'结果中删除'您的路径'。并且您收到相对于'DIR'的路径。
答案 6 :(得分:4)
要使用find命令获取所需文件的实际完整路径文件名,请将其与pwd命令一起使用:
find $(pwd) -name \*.txt -print
答案 7 :(得分: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
答案 8 :(得分:1)
您可以创建一个shell函数,例如在.zshrc
或.bashrc
:
filepath() {
echo $PWD/$1
}
filepath2() {
for i in $@; do
echo $PWD/$i
done
}
第一个仅适用于单个文件,显然。
答案 9 :(得分:1)
在文件系统上找到名为“filename”的文件,从根目录“/”开始搜索。 “文件名”
find / -name "filename"
答案 10 :(得分:1)
如果你想在输出中保留详细信息,例如文件大小等,那么这应该可行。
sed "s|<OLDPATH>|<NEWPATH>|g" input_file > output_file
答案 11 :(得分:0)
您可以像这样实现此功能
首先,使用ls命令指向目标目录。稍后使用find命令过滤掉它的结果。
从你的情况来看,听起来像 - 文件名总是以一个单词开头
file***.txt
ls /some/path/here | find . -name 'file*.txt' (* represents some wild card search)
答案 12 :(得分:0)
答案 13 :(得分: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