Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
2k views

How to iterate over associative array in bash

Based on an assoziative array in a bash script I need to iterate over it to get key & value. #!/bin/bash declare -A array array[foo]=bar array[bar]=foo I actually don't understand how to get ...
5
votes
2answers
205 views

How is bash scripting affected by the bash4 release?

bash4 looks good on paper, and I think I'll build it and give it a test drive. In the meantime... Anyone who has done the same care to share their expierence? It would be particularly interesting ...
3
votes
4answers
103 views

Simple Bash and RegEx Questions

I'm unable to get a pattern to match properly using regex in bash 4.1. I've read some information on about differences in quotes vs not quotes but I don't think that is my problem. My goal is to ...
2
votes
2answers
47 views

place a multi-line output inside a variable

I'm writing a script in bash and I want it to execute a command and to handle each line separately. for example: LINES=$(df) echo $LINES it will return all the output converting new lines with ...
2
votes
4answers
1k views

How to run BASH script in my Android?

My same BASH script is working in Fedora/CentOS. But I am testing one Android eee pad transformer. Where i have terminal access and i wrote a small test script. But its not working, how can i fix ...
2
votes
2answers
91 views

How do i cut section with start and end using Bash?

When i am doing pactl list i get lot of information. Out of those information, i am trying to only get the part start with Sink #0 till end of that section. 1) Information's Sink #0 State: ...
1
vote
2answers
64 views

In Java how can i do here docs? Like BASH or PHP we can

How can i do with Java. Here doc like string? Exaple: String java = << \EOF #This file is written via Java #You are watching JavaHereDoc ; comments ; value=abc etc etc EOF; ...
1
vote
2answers
54 views

How to write exact string inside block instead of executing them? While using << EOF in Bash?

I have a file configure.sh with following (it creates a test.sh file with configuration, so that i can use that test.sh finally as main configuration task). But it does not work cat > ...
1
vote
2answers
81 views

In BASH, Is there any way to find exactly the IP address for all interfaces? And remove all other information's?

How can i get only IP and which interface IP it is? So that i can keep a record file such as realtime.ini 1 - test.sh #!/bin/bash ipstring ='inet (.*)' for i in $(ip addr); do echo $i #on ...
1
vote
2answers
41 views

In BASH, How do i replace \r from a variable that exist in a file written using HTML <textarea></textarea>

How do i replace the \r? #!/bin/bash ... # setup if [[ $i =~ $screen ]]; then ORIGINAL=${BASH_REMATCH[1]} # original value is: 3DROTATE\r AFTER =${ORIGINAL/\\r/} # ...
1
vote
2answers
892 views

read error: 0: Resource temporarily unavailable

I have a bash script which prompts for user input multiple times and processes input in the background during the time the next input is expected. I keep getting this error once in while. read error: ...
1
vote
1answer
600 views

Unable to enable globstar in Bash 4

I put the following unsuccessfully to my .bashrc shopt -s globstar I am trying to test the command in action by ls **/*.c and by comparing it to ls */*/*.c How can you enable globstar in Bash ...
1
vote
1answer
425 views

Unable to use Checkjobs and Autocd in Bash 4

There are new commands in Bash 4: checkjobs and autocd. However, I did not find documentation for them at man bash I run unsuccessfully {checkjobs,autocd} I found the following in release notes ...
0
votes
1answer
49 views

BASH how can i get other scripts output, in the active dialog box?

I have a dialog window using ncurses. But in that dialog window i want to show my driver.sh outputs, how can i do that? Or at-least something like its complete or not complete. 1) /tmp/main.sh if [ ...
0
votes
2answers
77 views

How can i get the realtime values to make my own script in BASH specially as shown the attachment

I am trying to write in BASH my own tracking such as shown in the attachment. Specially i need to track the Network History Recieving and Sending data. Where i can get those Network send/receive ...
0
votes
1answer
113 views

What ncurses frameworks are available for BASH?

Is there some more TUI frameworks for BASH like this?: http://code.google.com/p/bashsimplecurses/ i want to take user input (data entry) process the entry
0
votes
3answers
105 views

How do you write multiple line configuration file using BASH, and use variables on multiline?

How can i write multi-lines in a file called myconfig.conf using BASH. #!/bin/bash kernel="2.6.39"; distro="xyz"; echo <<< EOL line 1, ${kernel} line 2, line 3, ${distro} line 4 line ... ...
0
votes
5answers
103 views

How can i read specific line and specific field using Bash?

I have this file and i want to only get the value of testme= So that i can do another action. But this throws lots of lines and actually cant yet make it work. 1. test.sh #!/bin/bash for i in $(cat ...
0
votes
3answers
215 views

How to change current working directory inside command_not_found_handle

I'm trying to write a not found handle in Bash that does the following: If $1 exists and it's a directory, cd into it. If $1 exists inside a user defined directory $DEV_DIR, `cd into it. If the ...