bash – 将字符串发送到stdin

前端之家收集整理的这篇文章主要介绍了bash – 将字符串发送到stdin前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在bash中有效地做到这一点:
/my/bash/script < echo 'This string will be sent to stdin.'

我知道,我可以管道输出从回声,如:

echo 'This string will be piped to stdin.' | /my/bash/script
您可以使用单行heredoc
cat <<< "This is coming from the stdin"

以上是一样的

cat <<EOF
This is coming from the stdin
EOF

或者您可以从命令重定向输出,如

diff <(ls /bin) <(ls /usr/bin)

或者你可以读为

while read line
do
   echo =$line=
done < some_file

或简单

echo something | read param
原文链接:https://www.f2er.com/bash/392496.html

猜你在找的Bash相关文章