首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

$# $* and $@ in bash

2012-07-02 
$#, $* and $@ in bashThis is little script shows the usage of $#, $* and $@ in bash.?#!/bin/bashfun

$#, $* and $@ in bash

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

?

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

热点排行