질문

질문

새로 설치한 후 셸 속도를 높이는 Bash 스크립트를 작성 중입니다.

main()
{
    #
    #   By default we assume the terminal doesn't support colors
    #
    RED=""
    GREEN=""
    YELLOW=""
    BLUE=""
    BOLD=""
    NORMAL=""

    #
    #   Check  if we are connected to a terminal, and that terminal
    #   supports colors.
    #
    if which tput >/dev/null 2>&1; then
            ncolors=$(tput colors)
    fi

    #
    #   Set the colors if we can
    #
    if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then
        RED="$(tput setaf 1)"
        GREEN="$(tput setaf 2)"
        YELLOW="$(tput setaf 3)"
        BLUE="$(tput setaf 4)"
        BOLD="$(tput bold)"
        NORMAL="$(tput sgr0)"
    fi

    #
    #   Only enable exit-on-error after the non-critical colorization stuff,
    #   which may fail on systems lacking tput or terminfo
    #
    set -e

################################################################################

    printf "${YELLOW}"
    echo ''
    echo '    ____             __   ___  _____        __  '
    echo '   / __ )____ ______/ /_ |__ \/__  /  _____/ /_ '
    echo '  / __  / __ `/ ___/ __ \__/ /  / /  / ___/ __ \'
    echo ' / /_/ / /_/ (__  ) / / / __/  / /__(__  ) / / /'
    echo '/_____/\__,_/____/_/ /_/____/ /____/____/_/ /_/ '
    echo ''
    echo ''
    printf "${NORMAL}"

################################################################################

    #
    #   Find out if Zsh is already installed
    #
    CHECK_ZSH_INSTALLED=$(grep /zsh$ /etc/shells | wc -l)

    #
    #   Check to see if Zsh is already installed
    #
    if [ ! $CHECK_ZSH_INSTALLED -ge 1 ]; then
        sudo apt-get -y install zsh
    fi

    #
    #   Clean the memory
    #
    unset CHECK_ZSH_INSTALLED

################################################################################

    #
    #   Remove the previous config file, so we know we start from scratch
    #
    rm ~/.zshrc &&

    #
    #   Removing unnecessary Bash files
    #
    rm ~/.bash_history 2> /dev/null &&
    rm ~/.bash_logout 2> /dev/null &&
    rm ~/.bashrc 2> /dev/null &&
    rm ~/.bash_sessions 2> /dev/null &&
    rm ~/.sh_history 2> /dev/null &&

################################################################################

    #
    #   Download the configuration file
    #
    curl -fsSL "https://raw.githubusercontent.com/davidgatti/my-development-setup/master/08_Zsh_instead_of_Bash/zshrc" >> ~/.zshrc

    #
    #   Get the name of the logged in user
    #
    USER_NAME=$(whoami)

    #
    #   Get the home path for the logged in user
    #
    HOME_PATH=$(getent passwd $USER_NAME | cut -d: -f6)

    #
    #   Add a dynamic entry
    #
    echo 'zstyle :compinstall filename '$HOME_PATH/.zshrc'' >> ~/.zshrc
}

main

나는 달렸고 Bash -x모든 것이 잘 작동했습니다. 하지만 curl결과 추적에서는 볼 수 없습니다. 내가 시도한 것:

  • 변수에 컬 추가
  • 사용평가
  • "3가지 방법으로 설정
  • 등.

질문

curl연결된 bash 스크립트 내에서 서명되지 않은 파일을 다운로드하고 싶습니다 . 여기서 bash 스크립트는 다음과 같이 실행됩니다.

sh -c "$(curl -fsSL https://raw.githubusercontent.com/davidgatti/my-development-setup/master/08_Zsh_instead_of_Bash/install.sh)"

sh -x 출력

내가 달리면

sh -cx "$(curl -fsSL https://raw.githubusercontent.com/davidgatti/my-development-setup/master/08_Zsh_instead_of_Bash/install.sh)"

이것이 출력입니다.

+ main
+ RED=
+ GREEN=
+ YELLOW=
+ BLUE=
+ BOLD=
+ NORMAL=
+ which tput
+ tput colors
+ ncolors=256
+ [ -t 1 ]
+ [ -n 256 ]
+ [ 256 -ge 8 ]
+ tput setaf 1
+ RED=
+ tput setaf 2
+ GREEN=
+ tput setaf 3
+ YELLOW=
+ tput setaf 4
+ BLUE=
+ tput bold
+ BOLD=
+ tput sgr0
+ NORMAL=
+ set -e
+ printf
+ echo

+ echo     ____             __   ___  _____        __
    ____             __   ___  _____        __
+ echo    / __ )____ ______/ /_ |__ \/__  /  _____/ /_
   / __ )____ ______/ /_ |__ \/__  /  _____/ /_
+ echo   / __  / __ `/ ___/ __ \__/ /  / /  / ___/ __ \
  / __  / __ `/ ___/ __ \__/ /  / /  / ___/ __ \
+ echo  / /_/ / /_/ (__  ) / / / __/  / /__(__  ) / / /
 / /_/ / /_/ (__  ) / / / __/  / /__(__  ) / / /
+ echo /_____/\__,_/____/_/ /_/____/ /____/____/_/ /_/
/_____/\__,_/____/_/ /_/____/ /____/____/_/ /_/
+ echo

+ echo

+ printf
+ wc -l
+ grep /zsh$ /etc/shells
+ CHECK_ZSH_INSTALLED=2
+ [ ! 2 -ge 1 ]
+ unset CHECK_ZSH_INSTALLED
+ rm /home/admin/.zshrc

개인적으로 curl그가 처형될 것이라고 는 생각하지 않는다.

답변1

~/.zshrc파일이 없으므로 rm ~/.zshrc0이 아닌 값으로 종료합니다. rm ~/.zshrc이 명령은 와 연결된 긴 명령 목록의 첫 번째 명령이므로 다음 &&명령 중 어느 것도 실행되지 않습니다. curl목록의 마지막 명령입니다.

해결 방법 #1: 를 rm -f사용 하거나 사용하지 않고 rm줄을 종료합니다 &&.

그리고 당신은 set -e당신의 빛나는 깃발을 앞에 놓았습니다. 이로 인해 예기치 않게 실패한 첫 번째 명령에서 스크립트가 종료됩니다. 따라서 삭제만으로는 &&충분하지 않습니다.

해결 방법 #2: 회선 사용 rm -f또는 종료rm|| true|| :

결론: 당신의 rm foo 2> /dev/null &&모든 것을 바꿔라rm -f foo

답변2

귀하의 질문에는 어떤 문제가 있는지 명확하지 않지만 파일을 저장하려면 URL이 있습니다.

curl -o /path/to/output-file http://www.example.com/path/to/the/file

매우 위험하게 살고 bash쉘에서 가상의 스크립트를 실행하십시오.

bash -c "$(curl -fsSL http://www.example.com/path/to/script-that-quietly-installs-a-rootkit-for-you)"

관련 정보