我怎样才能从这一行得到单词的结尾
我试过这个。
'svn info | grep revision'
所以我可以得到
Revision: 36991
但我想要的词只是
36991
我该怎么办?可能使用 'grep
'
或 shell 脚本
I tried this.
'svn info | grep revision'
so I can get
Revision: 36991
but the word I want is only
36991
how can I do this? maybe with 'grep
'
or shell script
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对你有用吗?
Will this work for you -
您可以使用 sed、流编辑器(或 awk 或 cut)。
You can use sed, the stream editor (or awk or cut).
这可能对你有用:
This might work for you: