Ping Yin <pkufranky@xxxxxxxxx> writes: > @@ -265,6 +267,10 @@ set_name_rev () { > # > modules_summary() > { > + summary_limit=${summary_limit:-1000000} Why a million? > + summary_limit=$((summary_limit<0?1000000:summary_limit)) This is doubly bashism. Variables must be referenced with $, and $(( conditional ? iftrue : iffalse )) is not POSIX. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html