in Education by
This smells buggy, but probably, someone can explain it: The following script doesn't work, the output is below: #!/bin/bash GLOBAL_VAR="OLD" myfunc() { echo "func before set> $GLOBAL_VAR" GLOBAL_VAR="NEW" echo "func after set> $GLOBAL_VAR" } myfunc | cat echo "final value> $GLOBAL_VAR" Output: func before set> OLD func after set> NEW final value> OLD Now, just take off the | cat and it works! #!/bin/bash GLOBAL_VAR="OLD" myfunc() { echo "func before set> $GLOBAL_VAR" GLOBAL_VAR="NEW" echo "func after set> $GLOBAL_VAR" } myfunc echo "final value> $GLOBAL_VAR" Output: func before set> OLD func after set> NEW final value> NEW JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
A pipe creates a subshell. It's said in the bash manual that subshells cannot modify the environment of their parents. See these links: http://www.gnu.org/software/bash/manual/bashref.html#Pipelines http://wiki.bash-hackers.org/scripting/processtree#actions_that_create_a_subshell

Related questions

0 votes
    This question already has answers here: Quick-and-dirty way to ensure only one instance of a shell script ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    In a function, How to create and use a global variable? How can I use it in other functions? Is it compulsory ... it in a function? Select the correct answer from above options...
asked Jan 24, 2022 in Education by JackTerrance
0 votes
    If there are more than one file(main.lua) which contains code and I declare some variables and functions ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Dec 31, 2021 in Education by JackTerrance
0 votes
    So I've got some C code: #include #include /* putting one of the "char*"s here causes a segfault ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 19, 2022 in Education by JackTerrance
0 votes
    I want to set some global variables inside a function, how can I do that? Select the correct answer from above options...
asked Jan 23, 2022 in Education by JackTerrance
0 votes
    I am fairly new to Java, I wanted to know how can i define a global variable ? Select the correct answer from above options...
asked Jan 22, 2022 in Education by JackTerrance
0 votes
    Which of the following global variables is used to get parameters? (a) HTTP_GET_VAR[] (b) HTTP_GET_VARS() ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 23, 2021 in Education by JackTerrance
0 votes
    Which global variables can be used to determine if a transaction is still open? (a) @@NESTLEVEL (b) ... Results topic in portion Query Processing Techniques of Database Management...
asked Oct 10, 2021 in Education by JackTerrance
0 votes
    How to access global and context variables in Talend?...
asked May 30, 2021 in Technology by JackTerrance
0 votes
    Which component do you need to use in order to read data line by line from an input flow ... entries into iterative global variables? tIterateToFlow tFileList tFlowToIterate tLoop...
asked Mar 24, 2021 in Technology by JackTerrance
0 votes
    What is the difference between global and static global variables?...
asked Jan 23, 2021 in Technology by JackTerrance
+1 vote
    What is the default value of local and global variables in C Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
    I have an application (myapp) that gives me a multiline output result: abc|myparam1|def ghi|myparam2|jkl ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    var funcs = []; // let's create 3 functions for (var i = 0; i < 3; i++) { / ... JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
...