Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Variable gets auto updated after function execution Post 303036761 by MadeInGermany on Wednesday 10th of July 2019 03:38:44 PM
Old 07-10-2019
grep -q might not work with all grep versions. What is your OS?
Code:
tail -f $UMPath/data/nirvana.log | while read line
do
done

Several problems with that.
The pipe forces the while-do-done block into a sub shell.
  • While the return should work an exit can produces different results, dependent on the shell. BTW what shell and OS do you use?
  • Your main problem: changes on variables are not copied back to the main shell.

Then, if the sub shell terminates, it sends a SIGPIPE to the tail -f that hopefully terminates.
The following eliminates some problems
Code:
# Watch the log file for the initialization string
getline()
{
# use the portable printf in favor of echo -e
printf "\nNow watching nirvana log for the Started Nirvana Realm string"
# tail -f will hopefully terminate
tail -f $UMPath/data/nirvana.log |
# the pipe forces the while-do-done into a sub shell:
# variables are not returned but a return value should work
while read line
do
    case "$line" in
    *"Realm Server Startup sequence completed"*)
        printf "\nFound: %s\n\n" "$line"
        return 0
    ;;
    *"Server shutdown"*)
        printf "\nFound: %\n\n" "$line"
        return 1
    ;;
    esac
done
}
# act on the return value
if getline
then
    echo "UM is now up and running"
else
    echo "UM failed to start. Please check"
    rval=1
fi
exit $rval

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

passing a variable inside a variable to a function

I would like to know how to pass a variable inside a variable to a function. sample code below -------------- for x in 1 9 do check_null $C$x ##call function to check if the value is null if then echo "line number:$var_cnt,... (2 Replies)
Discussion started by: KingVikram
2 Replies

2. Shell Programming and Scripting

Passing global variable to a function which is called by another function

Hi , I have three funcions f1, f2 and f3 . f1 calls f2 and f2 calls f3 . I have a global variable "period" which i want to pass to f3 . Can i pass the variable directly in the definition of f3 ? Pls help . sars (4 Replies)
Discussion started by: sars
4 Replies

3. Shell Programming and Scripting

How to pass a function with a variable parameter into another variable?

Hello again :) Am currently trying to write a function which will delete a record from a file. The code currently looks as such: function deleteRecord() { clear read -p "Please enter the ID of the record you wish to remove: " strID ... (2 Replies)
Discussion started by: U_C_Dispatj
2 Replies

4. Programming

pthread question : global variable not updated

Hi, I wrote the following program to understand mutexes. If I run the program , number of threads is shown as zero, even after creating one thread. When running with gdb, it works fine. The function process is used to update global variable (used to keep track of threads). It looks like the... (2 Replies)
Discussion started by: sanjayc
2 Replies

5. UNIX for Dummies Questions & Answers

Auto Complete variable names in KSH

Hi, I use KSH a lot. I wanted to know if I can auto-complete a Variable name in the environment. I know this is possible in tcsh. I use the vi mode to edit commands on command prompt. Any help would be much appreciated. Thanks..!! (4 Replies)
Discussion started by: grep_me
4 Replies

6. Shell Programming and Scripting

Function command execution from root

I have a function hello, that is echoing i have put that function in .bash1 file then recalling the function with same user but with su command but it is not working. username -> test function -> below function save in .bash1 function hello() { echo "Hello, $1!" } export -f hello I... (2 Replies)
Discussion started by: learnbash
2 Replies

7. Shell Programming and Scripting

Sequential Function Execution

I am having two different function in my script. When control is at first function I do not want to execute another function. How I can do that? Help is highly appreiated as I am not sure How I can do it in Unix? Thanks, Vikram. (2 Replies)
Discussion started by: VSom007
2 Replies

8. Shell Programming and Scripting

Passing variable value in a function to be used by another function

Hello All, I would like to ask help from you on how to pass variable value from a function that has been called inside the function. I have created below and put the variables in " ". Is there another way I can do this? Thank you in advance. readtasklist() { while read -r mod ver... (1 Reply)
Discussion started by: aderamos12
1 Replies

9. Shell Programming and Scripting

How to pass variable from one function to another function?

updateEnvironmentField() { linewithoutquotes=`echo $LINE | tr -d '"'` b() } I want to pass variable named $linewithoutquotes to another method called b(), which is called from updateEnvironmentField() method. How to do the above requirement with shell script (1 Reply)
Discussion started by: pottic
1 Replies

10. Shell Programming and Scripting

[bash] why my variable is not updated?

Does anyone know why the below script is not working? Why is not the variable tot_files updated? location=$1 cd "$location" tot_files=0 ( echo "" # recursively gets the total number of files tot_files=$(for t in files ; do echo `find . -type ${t:0:1} | wc -l` $t | cut -f1... (12 Replies)
Discussion started by: soichiro
12 Replies
XkbSetAutoResetControls(3)					   XKB FUNCTIONS					XkbSetAutoResetControls(3)

NAME
XkbSetAutoResetControls - Changes the current values of the AutoReset control attributes SYNOPSIS
Bool XkbSetAutoResetControls ( dpy, changes, auto_ctrls, auto_values ) Display * dpy ; unsigned int changes ; unsigned int * auto_ctrls ; unsigned int * auto_values ; ARGUMENTS
- dpy connection to X server - changes controls for which to change auto-reset values - auto_ctrls controls from changes that should auto reset - auto_values 1 bit => auto-reset on DESCRIPTION
XkbSetAutoResetControls changes the auto-reset status and associated auto-reset values for the controls selected by changes. For any con- trol selected by changes, if the corresponding bit is set in auto_ctrls, the control is configured to auto-reset when the client exits. If the corresponding bit in auto_values is on, the control is turned on when the client exits; if zero, the control is turned off when the client exits. For any control selected by changes, if the corresponding bit is not set in auto_ctrls, the control is configured to not reset when the client exits. For example: To leave the auto-reset controls for StickyKeys the way they are: ok = XkbSetAutoResetControls(dpy, 0, 0, 0); To change the auto-reset controls so that StickyKeys are unaffected when the client exits: ok = XkbSetAutoResetControls(dpy, XkbStickyKeysMask, 0, 0); To change the auto-reset controls so that StickyKeys are turned off when the client exits: ok = XkbSetAutoResetControls(dpy, XkbStickyKeysMask, XkbStickyKeysMask, 0); To change the auto-reset controls so that StickyKeys are turned on when the client exits: ok = XkbSetAutoResetControls(dpy, XkbStickyKeysMask, XkbStickyKeysMask, XkbStickyKeysMask); XkbSetAutoResetControls backfills auto_ctrls and auto_values with the auto-reset controls for this particular client. Note that all of the bits are valid in the returned values, not just the ones selected in the changes mask. X Version 11 libX11 1.2.1 XkbSetAutoResetControls(3)
All times are GMT -4. The time now is 09:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy