gpt4 book ai didi

linux - 将内容保存在 stdin 中以供另一个脚本读取

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:04:07 24 4
gpt4 key购买 nike

如果我想编写一个脚本 (A) 以便它调用另一个将从标准输入读取输入的脚本 (B),我如何将文件内容存储到 A 中的标准输入,并在 A 中调用 B 和那么 B 将从标准输入读取输入?

最佳答案

您可以使用管道。例如:文件内容:

Michael

scriptA.sh

#!/bin/bash

cat filecontent | ./scriptB.sh

scriptB.sh

#!/bin/bash

read -p "Name:" name
echo "Hello, $name"

当您运行脚本 scriptA.sh 时。输出将是:

[root@localhost ~]# ./scriptA.sh
Hello, Michael

关于linux - 将内容保存在 stdin 中以供另一个脚本读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48273282/

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