What is indirect expansion? What does ${!var*} mean?

前端 未结 5 1580
野趣味
野趣味 2020-11-22 05:28

I\'m reading \"Bash Guide for Beginners\". It says:

If the first character of PARAMETER is an exclamation point, Bash uses the

5条回答
  •  不知归路
    2020-11-22 06:18

    You've hit an exception in indirection processing, where if the last character is *, all variables that have the prefix given before will be returned.

提交回复
热议问题