gpt4 book ai didi

gnu-make - 获取 make 变量的第一个字母

转载 作者:行者123 更新时间:2023-12-02 22:15:50 29 4
gpt4 key购买 nike

有没有比

更好的方法来获取 GNU make 变量的第一个字符
FIRST=$(shell echo $(VARIABLE) | head -c 1)

(不仅笨重而且还要调用外部shell)?

最佳答案

这非常可怕,但至少它不会调用shell:

$(eval REMAINDER := $$$(VAR))          # variable minus the first char
FIRST := $(subst $(REMAINDER),,$(VAR)) # variable minus that

关于gnu-make - 获取 make 变量的第一个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12798666/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com