ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
What does putting ${ } around statements in shell do? Sometimes I see it done with legitimate variables, and other times with expressions. What's the deal? Thanks
it makes quoting variables easier, for example you can't do "echo thisisthenumber$itest" where $i is a variable, but "echo thisisstillthe${i}test" will substitute just fine. it's also used when you're doing regular expression substitutions directly in bash, i'd give you an example but i can never find them online, as mos people just use grep or awk instead. so basially evaluates the expression in the curly brackets in terms of bash variables and other bash functions.
(list) list is executed in a subshell environment (see COMMAND EXECUTION ENVIRONMENT
below). Variable assignments and builtin commands that affect the shell’s envi-
ronment do not remain in effect after the command completes. The return status
is the exit status of list.
{ list; }
list is simply executed in the current shell environment. list must be termi-
nated with a newline or semicolon. This is known as a group command. The return
status is the exit status of list. Note that unlike the metacharacters ( and ),
{ and } are reserved words and must occur where a reserved word is permitted to
be recognized. Since they do not cause a word break, they must be separated from
list by whitespace.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.