读书人

$# $* and $@ in bash

发布时间: 2012-07-02 17:46:23 作者: rapoo

$#, $* and $@ in bash

This is little script shows the usage of $#, $* and $@ in bash.

?

#!/bin/bashfunction countargs {    echo "$# args."}echo "$*"countargs "$*"countargs "$@"
?

读书人网 >操作系统

热点推荐