133

如何将标准输入连接到一个字符串,像这样?

echo "input" | COMMAND "string"

并得到

inputstring
4

10 回答 10

156

有点hacky,但这可能是执行您在问题中提出的最短方法(使用管道从stdout另一个进程/命令接受:echo "input"stdin

echo "input" | awk '{print $1"string"}'

输出:

inputstring

你到底想完成什么任务?更多上下文可以为您提供更好的解决方案的更多方向。

更新 - 回复评论:

@诺姆罗斯

做你想做的事的更惯用的方法是:

echo 'http://dx.doi.org/'"$(pbpaste)"

$(...)语法称为命令替换。简而言之,它执行包含在新子 shell 中的命令,并将其stdout输出替换为$(...)在父 shell 中调用的位置。所以你会得到,实际上:

echo 'http://dx.doi.org/'"rsif.2012.0125"
于 2012-12-14T18:24:31.707 回答
69

用于cat -从标准输入读取,并将其放入$()以丢弃尾随的换行符

echo input | COMMAND "$(cat -)string"

但是,为什么不放下管道并在命令替换中获取左侧的输出:

COMMAND "$(echo input)string"
于 2012-12-14T20:51:05.303 回答
61

我经常使用管道,所以这往往是一种为标准输入添加前缀和后缀的简单方法:

echo -n "my standard in" | cat <(echo -n "prefix... ") - <(echo " ...suffix")
prefix... my standard in ...suffix
于 2015-10-15T03:04:10.567 回答
13

There are some ways of accomplish this, i personally think the best is:

echo input | while read line; do echo $line string; done

Another can be by substituting "$" (end of line character) with "string" in a sed command:

echo input | sed "s/$/ string/g"

Why i prefer the former? Because it concatenates a string to stdin instantly, for example with the following command:

(echo input_one ;sleep 5; echo input_two ) | while read line; do echo $line string; done

you get immediatly the first output:

input_one string

and then after 5 seconds you get the other echo:

input_two string

On the other hand using "sed" first it performs all the content of the parenthesis and then it gives it to "sed", so the command

(echo input_one ;sleep 5; echo input_two ) | sed "s/$/ string/g"

will output both the lines

input_one string
input_two string

after 5 seconds.

This can be very useful in cases you are performing calls to functions which takes a long time to complete and want to be continuously updated about the output of the function.

于 2014-12-05T12:05:20.440 回答
11

You can do it with sed:

seq 5 | sed '$a\6'
seq 5 | sed '$ s/.*/\0 6/'

In your example:

echo input | sed 's/.*/\0string/'
于 2014-02-15T08:29:54.073 回答
10

我知道这已经晚了几年,但您可以使用 xargs -J 选项完成此操作:

echo "input" | xargs -J "%" echo "%" "string"

由于它xargs,因此您可以一次在文件的多行上执行此操作。如果文件“名称”有三行,例如:

Adam
Bob
Charlie

你可以这样做:

cat names | xargs -n 1 -J "%" echo "I like" "%" "because he is nice"
于 2015-09-29T15:50:16.727 回答
3

您发布的命令会将字符串“input”用作 COMMAND 的 stdin 流,除非 COMMAND 首先打印出其 stdin 的内容,然后打印出其命令行参数,否则不会产生您正在寻找的结果。

您想要做的似乎更接近命令替换。

http://www.gnu.org/software/bash/manual/html_node/Command-Substitution.html#Command-Substitution

使用命令替换,您可以使用如下命令行:

echo input `COMMAND "string"`

这将首先使用“字符串”作为输入评估 COMMAND,然后将该命令执行的结果展开到一行,替换 '`' 字符之间的内容。

于 2012-12-14T18:23:26.387 回答
1

猫将是我的选择:ls | cat - <(echo new line)

于 2019-03-25T09:40:32.510 回答
1

也有效:

seq -w 0 100 | xargs -I {} echo "string "{}

将生成如下字符串:

string 000
string 001
string 002
string 003
string 004

...

于 2018-04-01T18:31:43.560 回答
-1

我想在运行之前在我的 sql 脚本前面加上“set”语句。所以我回应了“set”指令,然后将它传递给 cat。命令 cat 有两个参数:标记为“-”的 STDIN 和我的 sql 文件,cat 将它们都连接到一个输出。接下来,我将结果传递给 mysql 命令以将其作为脚本运行。

echo "set @ZERO_PRODUCTS_DISPLAY='$ZERO_PRODUCTS_DISPLAY';" | cat - sql/test_parameter.sql | mysql

ps mysql登录名和密码存储在.my.cnf文件中

于 2021-03-18T10:24:09.657 回答