摘要:
脚本这种东西,就是要常用,否则一段时间不用就生疏了,因此决定时时记一些小知识点,一来回顾一下,二来需要的时候可以迅速获得提示。Sort by numberYou could now write a numeric sort subroutine like this:1 sub by_number {2 # a sort subroutine, expect $a and $b3 if ($a $b) { 1 } else { 0 }4 }To use the sort subroutine, just put its name (without an ampersand) b... 阅读全文