Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
要访问函数的第一个参数,我使用
func() { echo $1; }
如何直接访问ash中函数的最后一个参数?
我不想使用循环,既不想使用函数,也不想使用复杂的命令
您可以使用$($#).
$($#)
$#是参数的数量(等于最后一个参数的索引),最后一个参数$($#)也是如此。
$#