如何在bash脚本中执行“ make; make install”?

时间:2019-03-28 05:44:31

标签: bash scripting gnu-make configure nagios

我需要在bash脚本中自动安装NRPE代理。如何在远程目录中“进行;进行安装”?到目前为止,这是代码:

#!/bin/bash

for f in *.tar.gz
do
    tar zxf "$f" -C /home/$USER/
done

sudo useradd -s /sbin/nologin -M nagios

/home/$USER/nagios-plugins-2.2.1/configure --enable-command-args --with-nagios-user=nagios --with-nagios-group=nagios --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib64/

因此,在“配置”部分结束后,我需要执行“ make; make install”。另外,有什么方法可以优化当前脚本?

1 个答案:

答案 0 :(得分:2)

这可能有助于Khanna111's hint

cd /home/$USER/nagios-plugins-2.2.1 || exit 1
configure <options> && make && sudo make install