grep 仅针对线上的某些单词

发布于 2024-11-15 18:50:09 字数 177 浏览 4 评论 0原文

只需要 grep 倒数第 2 个和第 3 个之间的单词 /

这如下面的摘录所示,请注意,文件名上的位置从前面开始计数并不总是相同。任何想法都会有帮助。

/home/user/Drive-backup/2010 备份/2010 帐户/Jan/usernameneedtogrep/user.dir/4.txt

Need to grep only the word between the 2nd and 3rd to last /

This is shown in the extract below, to note that the location on the filename is not always the same counting from the front. Any ideas would be helpful.

/home/user/Drive-backup/2010 Backup/2010 Account/Jan/usernameneedtogrep/user.dir/4.txt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

热鲨 2024-11-22 18:50:09

下面是一个完成这项工作的 Perl 脚本:

my $str = q!/home/user/Drive-backup/2010 Backup/2010 Account/Jan/usernameneedtogrep/user.dir/4.txt!;
my $res = (split('/',$str))[-3];
print $res;

输出:

usernameneedtogrep

Here is a Perl script that does the job:

my $str = q!/home/user/Drive-backup/2010 Backup/2010 Account/Jan/usernameneedtogrep/user.dir/4.txt!;
my $res = (split('/',$str))[-3];
print $res;

output:

usernameneedtogrep
堇色安年 2024-11-22 18:50:09

我会使用 awk

awk -F/ '{print $(NF-2)}'
  • / 上分割
  • NF 是最后一列的索引,$NF 是最后一列的索引列本身和 $(NF-2) 倒数第三列。

当然,您可能首先需要过滤掉输入中不是路径的行(例如使用 grep 然后通过管道传输到 awk

I'd use awk:

awk -F/ '{print $(NF-2)}'
  • splits on /
  • NF is the index of the last column, $NF the last column itself and $(NF-2) the 3rd-to-last column.

You might of course first need to filter out lines in your input that are not paths (e.g. using grep and then piping to awk)

寒江雪… 2024-11-22 18:50:09

像这样的正则表达式应该可以解决问题:(

/.\/(.+?)\/.*?\/.*$/

请注意,我正在使用惰性搜索(+?*?),这样它就不会包含我们所用的斜杠不希望这样)

a regular expression something like this should do the trick:

/.\/(.+?)\/.*?\/.*$/

(note I'm using lazy searches (+? and *?) so that it doesn't includes slashes where we don't want it to)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文