我试图让bash处理来自stdin的数据,但没有运气。我的意思是以下工作都不做:
echo "hello world" | test=($(< /dev/stdin)); echo test=$test
test=
echo "hello world" | read test; echo test=$test
test=
echo "hello world" | test=`cat`; echo test=$test
test=
我希望输出为test=hello world。我尝试在“$test”周围加上“”引号,但也不起作用。
以下代码:
echo "hello world" | ( test=($(< /dev/stdin)); echo test=$test )
将工作太,但它将打开另一个新的子壳后管道,在哪里
echo "hello world" | { test=($(< /dev/stdin)); echo test=$test; }
不会的。
我必须禁用作业控制来使用chepnars的方法(我从终端运行这个命令):
set +m;shopt -s lastpipe
echo "hello world" | read test; echo test=$test
echo "hello world" | test="$(</dev/stdin)"; echo test=$test
Bash手册说:
lastpipe
如果设置了,并且作业控制不处于活动状态,shell将运行最后一条命令
没有在当前shell的后台执行的管道
环境。
注意:在非交互式shell中,作业控制默认是关闭的,因此在脚本中不需要set +m。
因为我上当了,我想留个便条。
我发现了这个线程,因为我必须重写一个旧的sh脚本
POSIX兼容。
这基本上意味着绕过POSIX引入的管道/子shell问题,重写如下代码:
some_command | read a b c
成:
read a b c << EOF
$(some_command)
EOF
代码是这样的:
some_command |
while read a b c; do
# something
done
成:
while read a b c; do
# something
done << EOF
$(some_command)
EOF
但后者在空输入时表现不一样。
使用旧的符号,while循环不会在空输入时输入,
但在POSIX符号中它是!
我认为这是由于EOF之前的换行,
这一点不容忽视。
POSIX代码的行为更像旧的符号
看起来是这样的:
while read a b c; do
case $a in ("") break; esac
# something
done << EOF
$(some_command)
EOF
在大多数情况下,这就足够了。
但不幸的是,这仍然不完全像以前的符号
如果some_command打印空行。
在旧的表示法中,执行while主体
在POSIX符号中,我们在主体前面中断。
解决这个问题的方法是这样的:
while read a b c; do
case $a in ("something_guaranteed_not_to_be_printed_by_some_command") break; esac
# something
done << EOF
$(some_command)
echo "something_guaranteed_not_to_be_printed_by_some_command"
EOF
我想要类似的东西——一个可以解析字符串的函数,可以作为参数或管道传递。
我提出了一个解决方案如下(工作作为#!/bin/sh和作为#!/bin/bash)
#!/bin/sh
set -eu
my_func() {
local content=""
# if the first param is an empty string or is not set
if [ -z ${1+x} ]; then
# read content from a pipe if passed or from a user input if not passed
while read line; do content="${content}$line"; done < /dev/stdin
# first param was set (it may be an empty string)
else
content="$1"
fi
echo "Content: '$content'";
}
printf "0. $(my_func "")\n"
printf "1. $(my_func "one")\n"
printf "2. $(echo "two" | my_func)\n"
printf "3. $(my_func)\n"
printf "End\n"
输出:
0. Content: ''
1. Content: 'one'
2. Content: 'two'
typed text
3. Content: 'typed text'
End
对于最后一种情况(3.),您需要键入,按enter和CTRL+D结束输入。
Use
IFS= read var << EOF
$(foo)
EOF
你可以像这样诱使read从管道中接受:
echo "hello world" | { read test; echo test=$test; }
或者写一个这样的函数:
read_from_pipe() { read "$@" <&0; }
但这没有意义——你的可变任务可能不会持久!管道可以生成子shell,其中环境是按值继承的,而不是按引用继承的。这就是为什么read不打扰管道的输入——它是未定义的。
仅供参考,http://www.etalabs.net/sh_tricks.html是一个漂亮的cruft收集必要的战斗奇怪和不兼容的伯恩炮弹,sh。