使用 Automator 将 URL 与剪贴板上的文本变量组合

Using Automator to combine URL with text variable on clipboard

我有一个URL,我需要一个脚本来将一个变量组合到最后。变量在剪贴板上。

首先我需要 运行 sed 来清理变量,所以它只是数字:

sed 's/[^0-9]*//g'

然后存储变量并将其附加到特定URL的末尾。

然后打开那个URL。

我环顾四周。也许我可以使用 awk?

假设您已经在剪贴板(粘贴板)中拥有了您想要的任何内容:

$ open "http://example.com?$(pbpaste | sed 's/[^0-9]*//g')"