Bash script [Press Tab] Screen Blank..


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Bash script [Press Tab] Screen Blank..
# 1  
Old 12-13-2009
Bash script [Press Tab] Screen Blank..

Dear Member,

OLD Question --> disable-completion not solved

My bash Menu script ping process problem.
If ping still running and users press [Tab Key] SCREEN is Blank...

Cant Members help me.. kill signal [Tab Key] or others scripting for my case, btw i use Linux..

Thanks,
Rico

My Bash Script :

Code:
#!/bin/bash

declare -r DIALOG_OPTS="0 0 0"
declare -i -r OUTPUT_DIALOG_WIDTH=60

pipe_command_to_tailbox_dialog() {
        local -i height=5+$1; shift
        local title="$1"; shift
        local command="$1"; shift

        local output_file=`mktemp`
        (eval $command) >& $output_file &
        local -i bg_job=$!

        dialog --title "$title" --tailbox $output_file $height $OUTPUT_DIALOG_WIDTH

        if [ -d /proc/$bg_job ]; then
    kill $bg_job || kill -9 $bg_job >& /dev/null
        fi
        wait $bg_job
    rm -f $output_file
}

# pings a host with a nice dialog
ping_host_dialog() {
        local ping_params_tmp=`mktemp`
            if dialog --ok-label "Submit" \
               --form "Ping host" \
                $DIALOG_OPTS \
     "Address:" 1 1 "192.168.1.1" 1 30 40 0 2> $ping_params_tmp; then
     local address=`head -1 $ping_params_tmp | tail -1`
        fi
        rm -f $ping_params_tmp
        if [ x"$address" != x ]; then
     pipe_command_to_tailbox_dialog 15 "Pinging host \"$address\"" "ping \"$address\""
        fi
}

main() {
        ping_host_dialog;
}

main "$@"


Last edited by pludi; 12-13-2009 at 06:15 PM..
# 2  
Old 12-13-2009
If the problem wasn't solved in the old thread, say so there and provide additional information. Thread closed, continued here.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to replace blank tab with zero in a file?

hi, i need to replace a blank tab output in a file to zero. input file: 2015/08/04 00:00:00 171 730579 27088 <blank> 3823 30273 1621778 ... (6 Replies)
Discussion started by: amyt1234
6 Replies

2. Shell Programming and Scripting

Dividing tab blocks in bash script

Hi everyone, I have a data.xml file which only contains thousands of data (tag) blocks. A part of the file looks exactly like this; <data> Line Line Line </data> <data> Line Line Line </data> the rest of the file is simply a repetition of this part. Here each data block contains a... (8 Replies)
Discussion started by: hayreter
8 Replies

3. Ubuntu

Blank screen after upgrade from 11.10 to 12.04!

Hello, I got blank screen when reboot after I tried to upgrade Ubuntu (64 bit server version) from 11.10 to 12.04 at update manager. The normal login GUI is missing, but mouse cursor is fine. Then I switched to terminal (tty1 ~ tty6), which looked fine and showed it is Ubuntu 12.04 ! (Forgot how... (4 Replies)
Discussion started by: yifangt
4 Replies

4. Solaris

Screen blank on boot up

I have a SunFire V490 Recently when the server is rebooted the screen goes blank from when the CDE is shutdown to when it is started up again. Has anyone got any ideas what might be causing this? I've had a quick look in messages but can't find anything in there. I've had a look at... (2 Replies)
Discussion started by: sonic72
2 Replies

5. Shell Programming and Scripting

Press Any Key script sequence using bash - HELP

hi to all. im a newbie in unix shell scripts. i want to make a simple unix shell script using the bash shell that asks a user to press any key after a series of commands, or an x if he wishes to exit. here's a sample script that i made: #!/usr/bin/bash pause(){ /usr/bin/echo "\t\t Press... (3 Replies)
Discussion started by: booghaw
3 Replies

6. UNIX for Advanced & Expert Users

GNU screen: shortcut to go to tab 10,11 etc

Using GNU-Screen for a long time. C-a 1 2 n p to navigate to other tabs. This works till 9. I often have 10, 11 etc. Is there any way to go to them quickly ? Currently, i have to do C-a 9, C-a n which is quite a pain. Thanks. (0 Replies)
Discussion started by: sentinel
0 Replies

7. Shell Programming and Scripting

read -n1 -r -p "Press..." key / produces error in bash shell script

Hello! Sorry, for my not so perfect english! I want to stop bash shell script execution until any key is pressed. This line in a bash shell script read -n1 -r -p "Press any key to continue..." key produces this error When I run this from the command line usera@lynx:~$ read... (4 Replies)
Discussion started by: linuxinho
4 Replies

8. Solaris

Blank screen on crt

Hello I'm new in sun and i have a liitle problem. I buy sun enterprise 420r and connect keyboard and monitor crt (non Sun). But when i start server i have blank screen on crt. I'm new in sun servers and i dont know why its doin this. (11 Replies)
Discussion started by: elmik
11 Replies

9. Solaris

Blank GRUB Screen

Hello. I had installed solaris 10 in morning , and all was running fine... I just logged out and logged in with another user ID oracle - It got stuck and then I pressed the button for restart. Now I see only word GRUB written in top line rest everything is black. What to do? (2 Replies)
Discussion started by: panchpan
2 Replies

10. UNIX for Dummies Questions & Answers

how to grep for blank records (space,tab,/n)?

I want to exclude (-v) blank records from a file before analysing it. I know I can use '^]$' for spaces and tabs but how do you look for lines that have nothing (/n or line feed) ? (2 Replies)
Discussion started by: Browser_ice
2 Replies
Login or Register to Ask a Question