변수 제거 --function option1 option2에서 문자를 제거하는 방법

변수 제거 --function option1 option2에서 문자를 제거하는 방법

스크립트 결과를 기록하는 함수를 만들고 스크립트에 매개변수를 추가했습니다. 당신은 볼 수 있습니다https://docs.laswitchtech.com/doku.php?id=documentations:linux:pxelinux

--screen이 스크립트에서는 스위치를 사용하여 모든 매개변수가 포함된 동일한 스크립트를 화면에 실행하기 위한 매개변수를 추가했습니다 -L.

Enable_Screen(){
    Check_Package screen
    ScreenCMD="./pxelinux.sh"
    CMDOptions="$@"
    CMDOptions=${CMDOptions// --screen/}
    CMD="$ScreenCMD $CMDOptions"
    if [ $debug = "true" ]; then
        echo -e "${ORANGE}[DEBUG][EXECUTE] screen -S PXE_Linux -L $CMD ${NORM}"
    fi
    screen -S PXE_Linux -L $CMD
    mv screenlog.0 pxelinux.screen.log
    exit 0
}

이제 로그를 추가하는 옵션을 매개변수에 추가하고 싶습니다.

스크립트 실행 방법의 예:

./pxelinux.sh --debug --screen --install-pxelinux

이제 이것이 제가 사용하고 싶은 예입니다

./pxelinux.sh --debug --screen append --install-pxelinux

이는 화면 기능에 대한 옵션이므로 내가 만들고 있는 화면으로 전달되는 것을 원하지 않습니다. 화면 기능에서 --screen매개변수 목록에서 이를 제거한 것을 볼 수 있으며 이제 append매개변수에 나타나면 제거해야 합니다. 그러나 그것이 인수의 옵션 중 하나인 경우에만 해당됩니다 --screen. append매개변수의 옵션이므로 활성화 --screen되거나 활성화되지 않을 수 있습니다.

기본적으로 저는 매개변수에 다음 규칙을 사용하고 있습니다. --argument=> 스크립트에서 함수 실행 argument=> 이전에 언급한 옵션--argument

더 간단하게:

스크립트 파일

#!/bin/bash

Config_Network(){
    echo -e "
source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet static
    address $1
    netmask $2
    gateway $3
" | tee -a /etc/network/interfaces
}

Update_System(){
    Command="apt-get update"; Executing "$Command"
    Command="apt-get upgrade -y"; Executing "$Command"
}

Restart_System(){
    shutdown -r now
}

Check_Package(){
    if [ $(dpkg-query -W -f='${Status}' $1 2>/dev/null | grep -c "ok installed") -eq 0 ];
    then
        Command="apt-get install $1 -y"; Executing "$Command"
    fi
}
Executing(){
    if [ $debug = "true" ]; then
        if eval $1;then
            echo -e "${GREEN}[DEBUG  ][$(date)][SUCCESS][EXECUTING] $1 ${NORM}" | tee -a $logfile
        else
            echo -e "${RED}[DEBUG  ][$(date)][ERROR  ][EXECUTING] $1 ${NORM}" | tee -a $logfile
        fi
    else
        if eval $1;then
            echo -e "${GREEN}[DEBUG  ][$(date)][SUCCESS][EXECUTING] $1 ${NORM}"
        else
            echo -e "${RED}[DEBUG  ][$(date)][ERROR  ][EXECUTING] $1 ${NORM}"
        fi

    fi
}
while test $# -gt 0
do
    case "$1" in
        --config-network)
            netconf
            ;;
        --update)
            Update_System
            ;;
        --restart)
            Restart_System
            ;;
        --*) 
            exit
            ;;
    esac
    shift
done

exit 0

이제 script.sh를 실행할 때 $1 $2 $3 명령문의 어디에 있든 netconf 함수에 전달할 수 있기를 원합니다.

./script.sh --config-network 10.10.10.10 255.255.255.0 10.10.10.1 --update --restart
./script.sh --restart --config-network 10.10.10.10 255.255.255.0 10.10.10.1 --update
./script.sh --update --restart --config-network 10.10.10.10 255.255.255.0 10.10.10.1 --update

답변1

다음 3가지 매개변수가 포함되어 있는지 테스트하여 --문제에 대한 해결책을 찾았습니다 . 이 경우에는 IP와 마스크를 찾고 있으므로 이에 대한 두 번째 테스트를 추가했습니다. 따라서 첫 번째는 if다음 매개변수가 스크립트의 함수가 아닌지 확인하고 두 번째는 if함수에 전달하려는 매개변수를 확인합니다.

    --config-network)
        if [[ $2 != *--* && $3 != *--* && $4 != *--* ]]; then
            if [[ $2 =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ && $3 =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ && $4 =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
                Config_Network $2 $3 $4
            else
                Config_Network
            fi
        else
            echo "Bad [argument] $1 $2 $3 $4"
            Display_Help
            exit
        fi
        ;;

관련 정보