如何将shell输出管道输出到ruby -e?

前端之家收集整理的这篇文章主要介绍了如何将shell输出管道输出到ruby -e?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
说我在我的终端中输入了一些内容,例如:
ls | grep phrase

并且在这样做之后我意识到我想要删除所有这些文件.

我想使用Ruby来做到这一点,但无法弄清楚要传递给它的内容.

ls | grep phrase | ruby -e "what do I put in here to go through each line by line?"
以此为出发点:
ls ~ | ruby -ne 'print $_ if $_[/^D/]'

哪个回报:

Desktop
Documents
Downloads
DropBox

-n标志表示“遍历所有传入行”并将它们存储在“默认”变量$_中.我们没有看到变量使用太多,部分原因是对Perl过度使用它的下意识反应,但它在Rubydom中有其有用的时刻.

这些是常用的标志:

-e 'command'    one line of script. Several -e's allowed. Omit [programfile]
-n              assume 'while gets(); ... end' loop around your script
-p              assume loop like -n but print line also like sed
原文链接:https://www.f2er.com/bash/385107.html

猜你在找的Bash相关文章