创建提示以接收正在运行的工作流中作业之间的交互操作。
从文档中找到。选项提示符只能在开始执行工作流之前放入使用
示例:
echo "Press 'q' to exit" count=0 while : ; do read -n 1 k <&1 if [[ $k = q ]] ; then printf "\nQuitting from the program\n" break else ((count=$count+1)) printf "\nIterate for $count times\n" echo "Press 'q' to exit" fi done
运行平台工作流不接受外部输入吗?
https://stackoverflow.com/questions/60406827
复制相似问题