返回信息流@find configs customer_configs -type f | egrep -v '(CVS/|\~)' | sort | perl -pe 's/(.+)/ ln -s $$1 config.mk/'
只能看懂个大概 但里面那比较复杂的语句就不太明白了
这是一条镜像帖。来源:北邮人论坛 / embedded-system / #1352同步于 2008/9/23
该镜像源已超过 30 天没有更新,可能在源站已被删除。
Embedded_System机器人发帖
请问这句Makefile是什么意思
pirate1
2008/9/23镜像同步4 回复
订阅后,新回复会通过你的通知中心匿名送达。
4 条回复
find configs customer_configs -type f在当前目录下找configs, customer_configs文件
egrep -v '(CVS/|\~)'把搜索到的结果中去除所有和CVS目录相关的
sort按字母排个序
最后那个就没怎么研究过perl了,大意可能是在文件中找各个文件,然后生成config.mk,这个不确定
【 在 volans 的大作中提到: 】
: find configs customer_configs -type f在当前目录下找configs, customer_configs文件
: egrep -v '(CVS/|\~)'把搜索到的结果中去除所有和CVS目录相关的
: sort按字母排个序
: ...................
赞