sh의 "${x%% *}"는 무엇을 의미하나요? [복사]

sh의 "${x%% *}"는 무엇을 의미하나요? [복사]

방금 makefile에서 "$${x%% *}"를 보았습니다. 이는 sh에서 "${x%% *}"를 의미합니다. 왜 이런 글을 쓰나요?

makefile은 로컬 컴퓨터에서 명령을 사용할 수 있는지 어떻게 감지합니까?

determine_sum = \
        sum=; \
        for x in sha1sum sha1 shasum 'openssl dgst -sha1'; do \
          if type "$${x%% *}" >/dev/null 2>/dev/null; then sum=$$x; break; fi; \
        done; \
        if [ -z "$$sum" ]; then echo 1>&2 "Unable to find a SHA1 utility"; exit 2; fi

checksums.dat: FORCE
    $(determine_sum); \
    $$sum *.org

답변1

이것은 POSIX 쉘 변수 대체 함수입니다:

${var%Pattern} Remove from $var the shortest part of $Pattern that matches the back end of $var.
${var%%Pattern} Remove from $var the longest part of $Pattern that matches the back end of $var.

그러므로 만일var="abc def ghi jkl"

echo "${var% *}" # will echo "abc def ghi"
echo "${var%% *}" # will echo "abc"

관련 정보