ps aux --sort +rss/rss根据内存正序排 ps aux --sort -rss 逆序 ps aux --sort -pid/pid ps aux --sort %cpu/-%cpu 根据cpu排序 关于ps命令显示不全的解决方法:ps aux | more ; ps auxww 后面的w要写两遍 man ps看下帮助信息: -w Use 132 columns to display information, instead of the default which…
List<T> 可以通过 .Sort()进行排序,但是当 T 对象为自定义类型时(比如自定义模型),就需要 IComparable接口重写其中的方法来实现,实现代码如下: class Program { static Func<Model, int> where = a => a.id; ; static void Main(string[] a) { List<Model> result = GetData().ToList(); result.Sort();…