gpt4 book ai didi

linux - shell脚本while循环触发构建

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:34:21 32 4
gpt4 key购买 nike

我需要为某些特定项目触发构建,这些项目在文本文件中用逗号分隔。

我写了一个 shell 脚本来拆分文件的内容,提取文件夹并导航到该文件夹​​。导航完成后,触发构建,所有项目路径都应该发生这种情况。如果我在导航后在目录中列出文件,下面的脚本工作正常,但在进行 gradle 构建时,它只执行一次。

下面是我的shell脚本

CWD="$(pwd)"
INPUT=deploy.txt
OLDIFS=$IFS
IFS=","
[ ! -f $INPUT ] && { echo "$INPUT file not found"; exit 99; }
while read f1
do
echo "$f1 building...";
(
cd $f1;
gradle clean b u;
cd $CWD;

)
echo "Build over"

done < $INPUT
IFS=$OLDIFS

这个脚本有什么问题吗?请帮忙

最佳答案

这是推测性的(重定向 gradle 命令的标准输入),但我想借此机会解决您的脚本的其他一些问题。

INPUT=deploy.txt
# Consider exiting with status 1 instead of 99 unless you have
# a specific reason for using 99.
[ ! -f "$INPUT" ] && { echo "$INPUT file not found"; exit 99; }
while IFS=, read -r f1 rest
do
echo "$f1 building..."
pushd "$f1"
gradle clean b u < /dev/null
popd

echo "Build over"

done < "$INPUT"

我假设您正在更改 IFS 的值,以便拆分从 $INPUT 读取的行;在这种情况下,您需要为 read 提供至少两个变量,以便将第一个字段分配给 f1,并将该行的其余部分分配给另一个变量。一起使用 pushdpopd 比手动记录旧的工作目录更简单;因为您使用的是子 shell,所以您不需要使用 CWD,因为第一个 cd 的效果只在该子 shell 退出之前有效。


如果出于某种原因,gradle 确实 需要访问标准输入,请使用不同的文件描述符从 $INPUT 中读取。 (无论如何,您都可以考虑这样做;您绝对知道 read 应该从 $INPUT 中读取,因此没有理由干扰 gradle。)

while IFS=, read -r f1 rest <&3; do
echo "$f1 building..."
pushd "$f1"
gradle clean b u
popd
done 3< "$INPUT"

关于linux - shell脚本while循环触发构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40767182/

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