how to loop through arguments in a bash script - Unix & Linux
經安全檢測,此網站為安全網站,請放心前往原始網址!
how to loop through arguments in a bash script - Unix & Linux
2013年6月13日 - More generally, the list of parameters of the current script or function is available through the special variable $@ . for i in "$@"; do echo "$i" ...