zhangyiqun
Thoughts, stories and ideas.
awk -F’[^a-zA-Z]+’ ‘/.$/{if ( $1~/[a-zA-Z]+/) print $1 ;else print $2}’
精髓在于分隔符的使用。