标签: bash makefile
我有一个看起来像这样的makefile
default: install install: echo $(cat ./.bash_profile) > ~/.bash_profile
但是此表达式$(cat ./.bash_profile)的结果似乎为空,因此没有将任何内容传递给.bash_profile。
$(cat ./.bash_profile)
我在这里做错什么,这个表达式的正确名称是什么,似乎也找不到。