摘要: 号称天才排序算法,据说是充分发挥了多核的优势#!/bin/bash function f() { sleep "$1" echo "$1" } while [ -n "$1" ] do f "$1" & shift done wait 参考:ht... 阅读全文
posted @ 2015-11-02 15:46 fengbohello 阅读(255) 评论(0) 推荐(0) 编辑