bash 脚本 - 将数字输出到屏幕上作为上一个命令的结果
我正在尝试自动将更改的文件复制到强制更改列表中,但需要帮助获取生成的更改列表编号。我认为这对于 bash 脚本来说可能是一件简单的事情 - 但我只是还没有得到它!!...
基本上我执行命令
p4 change -o | sed 's/<enter description here>/This is my description./' | p4 change -i
作为结果,我在屏幕上得到类似于下面一行的输出(显然数字发生了变化)
Change 44152 created.
我想要的是能够将生成的数字捕获到一个变量中,然后我可以在脚本的其余部分中使用(将未来的文件添加到相同的更改列表等)...
任何人都可以建议吗?
谢谢
I am trying to automate the copying of changed files into a perforce changelist, but need help getting the generated changelist number. I assume this is probably a straight-forward thing for bash scripting - but I'm just not getting it yet!!...
Basically I execute the command
p4 change -o | sed 's/<enter description here>/This is my description./' | p4 change -i
As a result of this, I get output onto screen something like the line below (obviously the number changes)
Change 44152 created.
What I want, is to be able to capture the generated number into a variable I can then use in the rest of my script (to add future files to the same changelist etc)...
Can anyone please advise?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
像这样
编辑:根据@Enigma最后的评论
如果你想在sed命令中使用shell变量,请使用双引号
“”
而不是单引号''
围绕 sed 命令。如下所示“更新 44152 表单”的结果($change 保留值 44152)
like this
EDIT: Per @Enigma last comment
If you want to use shell variable in sed command use doublr quote
""
instead single quote''
around sed command. Like belowResults in "updating 44152 form" ($change holds value 44152)
您可以使用`字符捕获命令的输出。
您可以使用 awk 获取第二列数据,即数字部分。
现在 myVariable 将是您的号码 44152。
You can capture the output of a command with the ` character.
You can use awk to get the 2nd column of data, the number part.
Now myVariable will be your number, 44152.
你可以使用剪切。这是另一个相关的 stackoverflow 条目:
使用空格作为 cut 命令的分隔符< /a>
you could use cut. Here is another related stackoverflow entry:
use space as a delimiter with cut command
我会用这样的东西
I would use something like this
如果您想获取最后生成的变更列表,您也可以输入,
但这只有在您创建变更列表后没有其他人创建变更列表时才有效。
If you are wanting to get the last generated changelist, you can also type
but this will only work if no one else made a changelist after you made yours.