How many different ways are there to get variable value in bash?

Posted by user198729 on Stack Overflow See other posts from Stack Overflow or by user198729
Published on 2010-03-27T13:58:57Z Indexed on 2010/03/27 14:03 UTC
Read the original article Hit count: 105

Filed under:
|

I found these two:

[root@~]# echo $i;
2
[root@~]# echo ${i};
2

© Stack Overflow or respective owner

Related posts about bash

Related posts about syntax