我有一个命令可以产生这样的输出:
[size][tabulation][path]
我想排除所有具有多个级别的路径
保持 :
/a
排除 :
/a/b
或者 :
/a/b/c[...]
但我没有找到任何可以做到这一点的正则表达式。我想到了类似
[space][path][space]
但输出中没有任何空格,每行只有一个制表符,仅此而已
你有什么主意吗 ?
答案1
使用:
egrep '\s/[^/]+$'
**解释
\s # any kind of spaces
/ # a slash
[^/]+ # character class, 1 or more any character that is not a slash
$ # end of line