set_title 为bashrc 中自定义函数。
stackoverflow 上的一个回答:
You cannot call bash functions or aliases in a Makefile, only binaries and scripts. What you can do however, is calling an interactive bash and instruct it to call your function or alias:
all: bash -i -c lsc
if
lsc
is defined in your .bashrc, for example.
谢谢啦