When you use a command substitution (i.e., the $(...)
construct), you are creating a subshell. Subshells inherit variables from their parent shells, but this only works one way: A subshell cannot modify the environment of its parent shell.
Your variable e
is set within a subshell, but not the parent shell. There are two ways to pass values from a subshell to its parent. First, you can output something to stdout, then capture it with a command substitution:
myfunc() { echo "Hello" } var="$(myfunc)" echo "$var"
The above outputs:
Hello
For a numerical value in the range of 0 through 255, you can use return
to pass the number as the exit status:
mysecondfunc() { echo "Hello" return 4 } var="$(mysecondfunc)" num_var=$? echo "$var - num is $num_var"
This outputs:
Hello - num is 4
Related Posts:
- How to modify a global variable within a function in bash?
- Pass variable from one Jenkins stage to others in sh
- Create timestamp variable in bash script
- Cp: target is not a directory
- How do I tell if a regular file does not exist in Bash?
- How to create a file in Linux from terminal window? [closed]
- Read a file line by line assigning the value to a variable
- How to decode Seagate’s hard drive date code in a Bash script
- What does export PS1=”\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ ” mean in MacOS’ bash Terminal?
- In the shell, what does ” 2>&1 ” mean?
- How do I use a regex in a shell script?
- How to grep for case insensitive string in a file?
- Difference between wait and sleep
- How do I parse command line arguments in Bash?
- How do I execute a bash script in Terminal?
- Multi-line string with extra space (preserved indentation)
- How to make “if not true condition”?
- ‘\r’: command not found – .bashrc / .bash_profile [duplicate]
- -bash: syntax error near unexpected token `newline’
- How can I check if a directory exists in a Bash shell script?
- Echo newline in Bash prints literal \n
- Bash script and /bin/bash^M: bad interpreter: No such file or directory [duplicate]
- Passing parameters to a Bash function
- How can I use “:” as an AWK field separator?
- “while :” vs. “while true” [duplicate]
- How to reload .bashrc settings without logging out and back in again?
- How can I declare and use Boolean variables in a shell script?
- What is the purpose of “&&” in a shell command?
- Replace one substring for another string in shell script
- How do I compare two string variables in an ‘if’ statement in Bash?
- How to trim whitespace from a Bash variable?
- Is bash a programming language?
- Emulating a do-while loop in Bash
- How can I count all the lines of code in a directory recursively?
- How can I kill a process by name instead of PID, on Linux?
- How to change the output color of echo in Linux
- Which characters need to be escaped when using Bash?
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- How can I get the source directory of a Bash script from within the script itself?
- cp: missing destination file operand after
- BASH Syntax error near unexpected token ‘done’
- Shell: How to call one shell script from another shell script?
- How can I match a string with a regex in Bash?
- How to trim whitespace from a Bash variable?
- How to use gdb with pipes and stdin
- find: missing argument to -exec
- How to define hash tables in Bash?
- How to escape single quotes within single quoted strings
- Grep ‘binary file matches’. How to get normal grep output?
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- Bash if statement with multiple conditions throws an error
- How to check if an environment variable exists and get its value?
- Bash syntax error: unexpected end of file
- How to convert a string to lower case in Bash?
- How do I edit $PATH (.bash_profile) on OS X?
- Difference between return and exit in Bash functions
- Check number of arguments passed to a Bash script
- choosing between $0 and BASH_SOURCE
- How do I automatically restart a Minecraft Spigot server in the event of a crash or /stop when using screen?
- Create a new file in git bash
- How to specify the private SSH-key to use when executing shell command on Git?
- Fast ping sweep in python
- Speed up rsync with Simultaneous/Concurrent File Transfers?
- Multi-dimensional arrays in Bash
- Using SED with wildcard
- Variable interpolation in the shell
- What’s the meaning of the parameter -e for bash shell command line?
- How can I check if a program exists from a Bash script?
- C++ Global variable declaration
- Bash command to sum a column of numbers
- Check existence of input argument in a Bash shell script
- Associative arrays in Shell scripts
- Is there anything in Zsh like .bash_profile?
- Running programs in parallel using xargs
- Linux find and grep command together
- How to output a multiline string in Bash?
- Shell script not running, command not found
- How to ssh from within a bash script?
- curl: no URL specified for restful api
- firebase-tools “-bash: firebase: command not found”
- source command not found in sh shell
- Running bash script from within python
- How to run C program on Mac OS X using Terminal?
- Bash mkdir and subfolders
- Linux Bash: Move multiple different files into same directory
- How to get the first line of a file in a bash script?
- Difference between sh and Bash
- What is a simple explanation for how pipes work in Bash?
- How to open Emacs inside Bash
- Error handling in Bash
- bash which OR operator to use – pipe v double pipe
- Integer expression expected error in shell script
- Timeout a command in bash without unnecessary delay
- Error when using ‘sed’ with ‘find’ command on OS X: “invalid command code .”
- How to determine if a bash variable is empty?
- How do I get the current Unix time in milliseconds in Bash?
- Check if array is empty in Bash
- Run an interactive bash subshell with initial commands without returning to the (“super”) shell immediately
- Clean way to write complex multi-line string to a variable
- What does passing the -xe parameters to /bin/bash do