在Jenkins中运行以下代码:
node('BuildNode') {
sh '''
rm -f tmp_file > /dev/null
curl \
-k \
"https://releases.ubuntu.com/22.04.2/ubuntu-22.04.2-desktop-amd64.iso?_ga=2.57278633.244943105.1679993691-1161364338.1679993691" \
-o tmp_file \
-L
'''
}
在下载过程完成之前,此命令的输出不会显示在Jenking控制台中。
顺便说一句,如果使用wget代替- Jenkins控制台打印进度信息。
1条答案
按热度按时间gev0vcfq1#
--progress-bar你可以尝试添加这个谢谢