1. 取后缀名, 前缀名
[root@server test]# apptec=lys.txt
[root@server test]# echo ${apptec%.*}
lys
[root@server test]# echo ${apptec%%.*}
lys
[root@server test]# echo ${apptec#*.}
txt
[root@server test]# apptec=lys.txt
[root@server test]# echo ${apptec%.*}
lys
[root@server test]# echo ${apptec%%.*}
lys
[root@server test]# echo ${apptec#*.}
txt