gpt4 book ai didi

linux - bash |管道到 bash 函数

转载 作者:太空狗 更新时间:2023-10-29 11:49:48 24 4
gpt4 key购买 nike

在尝试通过管道传递给 Bash 函数时,我这样写:

example () {
if [ -z ${1+x} ]; then local S=${@:-$(</dev/stdin)}; else local S="$1"; fi
#echo "$S"
echo "$S" | tr ' ' '_'
}
echo 'Moizès Júnior' | example
example 'Moizès Júnior'

Moizès_Júnior
Moizès_Júnior

但是,在另一个上下文中,我收到了正确的输出以及此错误消息:“段错误(核心已转储)”。

尝试调试它时,我问我在函数内部编写代码以获得 STDIN 的方式是否有问题。

非常感谢。

最佳答案

我不建议将整个标准输入读入一个变量。而不是:

#the main "worker" function always uses stdin/out
example_worker() { tr ' ' '_'; }

#the switcher
example() { if [[ -z "$1" ]]; then example_worker; else example_worker <<< "$1"; fi ; }

echo 'a b c' | example
example 'a b c'
#but also
example < multi_giga_file.txt

关于linux - bash |管道到 bash 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42719077/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com