Variable variables

Jmnote (토론 | 기여)님의 2015년 3월 17일 (화) 17:36 판 (새 문서: category: variable ;Variable variables ;변수 변수 ==Bash== category: Bash <source lang='Bash'> greeting="Hello World" variable_name="greeting" eval echo \$$variable_name...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
Variable variables
변수 변수

Bash

greeting="Hello World"
variable_name="greeting"
eval echo \$$variable_name
# Hello World
greeting="Hello World"
variable_name="greeting"
eval result=\$$variable_name
echo $result
# Hello World
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}