unshift与 shift 相反,它将列表添加到数组的开头,并返回数组中新元素的数量。
unshift ARRAY, LIST unshift EXPRESSION, LIST
unshift(@ARGV, '-e') unless $ARGV[0] =~ /^-/;