代码之家  ›  专栏  ›  技术社区  ›  shantanuo

自动响应命令提示符

  •  0
  • shantanuo  · 技术社区  · 4 年前

    有没有办法用shell脚本自动安装这个软件?

    wget https://github.com/conda-forge/miniforge/releases/download/4.8.3-4/Miniforge3-Linux-aarch64.sh
    
    bash Miniforge3-Linux-aarch64.sh
    

    当我运行上述命令时,我有以下4个步骤:

     press ENTER
     type YES
     press ENTER
     type YES
    

    2 回复  |  直到 4 年前
        1
  •  1
  •   Gilles Quénot    4 年前

    这样地:

    chmod +x Miniforge3-Linux-aarch64.sh
    ./Miniforge3-Linux-aarch64.sh -b 
    

    检查:

    ./Miniforge3-Linux-aarch64.sh -h
    

    -b

        2
  •  0
  •   SomeUsername1    4 年前

    可以使用expect包中的expect和send函数。

    Man Page
    找到答案 here