bash 脚本 - 将数字输出到屏幕上作为上一个命令的结果

发布于 2024-11-17 22:37:41 字数 418 浏览 0 评论 0原文

我正在尝试自动将更改的文件复制到强制更改列表中,但需要帮助获取生成的更改列表编号。我认为这对于 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 技术交流群。

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

发布评论

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

评论(5

天涯离梦残月幽梦 2024-11-24 22:37:41

像这样

change=`p4 change -o | sed 's/<enter description here>/This is my description./' | p4 change -i|cut -d f2`

echo $change

编辑:根据@Enigma最后的评论

如果你想在sed命令中使用shell变量,请使用双引号“”而不是单引号''围绕 sed 命令。如下所示

sed "s/<enter description here>/ updating $change form/"

“更新 44152 表单”的结果($change 保留值 44152)

like this

change=`p4 change -o | sed 's/<enter description here>/This is my description./' | p4 change -i|cut -d f2`

echo $change

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 below

sed "s/<enter description here>/ updating $change form/"

Results in "updating 44152 form" ($change holds value 44152)

抠脚大汉 2024-11-24 22:37:41

您可以使用`字符捕获命令的输出。

myVariable=`myCommand`

您可以使用 awk 获取第二列数据,即数字部分。

myVariable=`originalCommand|awk '{print $2}'`

现在 myVariable 将是您的号码 44152。

You can capture the output of a command with the ` character.

myVariable=`myCommand`

You can use awk to get the 2nd column of data, the number part.

myVariable=`originalCommand|awk '{print $2}'`

Now myVariable will be your number, 44152.

驱逐舰岛风号 2024-11-24 22:37:41

你可以使用剪切。这是另一个相关的 stackoverflow 条目:

使用空格作为 cut 命令的分隔符< /a>

you could use cut. Here is another related stackoverflow entry:

use space as a delimiter with cut command

撩起发的微风 2024-11-24 22:37:41

我会用这样的东西

echo "Change 44152 created." | tr -d 'a-zA-Z .'

I would use something like this

echo "Change 44152 created." | tr -d 'a-zA-Z .'
始终不够 2024-11-24 22:37:41

如果您想获取最后生成的变更列表,您也可以输入,

variable=`p4 counter change`

但这只有在您创建变更列表后没有其他人创建变更列表时才有效。

If you are wanting to get the last generated changelist, you can also type

variable=`p4 counter change`

but this will only work if no one else made a changelist after you made yours.

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