发布时间:2015-10-31 21:51:16
[root@localhost /]# ln --helpUsage: ln [OPTION]... [-T] TARGET LINK_NAME (1st form) or: ln [OPTION]... TARGET (2nd form) or: ln [OPTION]... TARGET... DIRECTO.........【阅读全文】
发布时间:2015-07-27 23:39:43
toupper = $(shell echo $1 |tr '[a-z]' '[A-Z]')<br />tolower = $(shell echo $1 |tr '[A-Z]' '[a-z]')<br />mkbat = ./makebat<br />mkflag = all<br />first_upper_word = $(call toupper,$(word 1,$(subst __, ,$@)))<br />second_upper_word = $(call toupper,$(word 2,$(subst __, ,$@)))<br />mkbsp = $(mkba.........【阅读全文】
发布时间:2015-07-27 21:55:12
<p>toupper = $(shell echo $1 |tr '[a-z]' '[A-Z]')<br />tolower = $(shell echo $1 |tr '[A-Z]' '[a-z]')<br />mkbat = ./makebat<br />mkbsp = $(mkbat) $(call tolower,$(word 3,$(subst __, ,$@))) all $(call toupper,$(word 1,$(subst __, ,$@))) $(call toupper,$(word 2,$(subst __, ,$@))) <br />mklcardb.........【阅读全文】