1,解析字符串的第一,二字符
str=D12162701
send:=$(shell echo $(str) | head -c 1)
send:=$(shell echo $(str) | head -c 2)
send:=$(shell echo $(SECOND) | tail -c 2)
send:=$(subst D,R,$(SECOND)) // $(subst FROM, TO, TEXT),即将字符串TEXT中的子串FROM变为TO。