For loop output redirection


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting For loop output redirection
# 1  
Old 03-28-2014
For loop output redirection

Hi All,

i have below for loop of which i am trying to redirect output in a file:
Code:
 
for i in `/usr/sbin/ifconfig -a | awk '/flags/ {print $1}' | grep -v lo | sed 's/://g'`
do
ifconfig $i dhcp status
done >> /tmp/logfile

but instead the output is appearing as stdout on screen rather than a file.
Could you please let me know what mistakes i am doing ..
# 2  
Old 03-28-2014
Code:
ifconfig $i dhcp status >> /tmp/logfile

# 3  
Old 03-28-2014
thanks vbe .. i have tried this before the result is same.Output still apears on the screen but not gettting redirected into the file..
please suggest
# 4  
Old 03-28-2014
Try:
Code:
for i in `/usr/sbin/ifconfig -a | awk '/flags/ && $1 !~ /lo/ {gsub(/:/, "", $1};print $1}'`
do
        /usr/sbin/ifconfig $i dhcp status
done 2>&1 >> /tmp/logfile

# 5  
Old 03-28-2014
Does below command gives any output ?

/usr/sbin/ifconfig -a | awk '/flags/ {print $1}' | grep -v lo | sed 's/://g'



try with this first . whats the content of file /tmp/logfile_1 and /tmp/logfile_2
Code:
for i in `/usr/sbin/ifconfig -a | awk '/flags/ {print $1}' | grep -v lo | sed 's/://g'`
do
echo $i >> /tmp/logfile_1
ifconfig $i  >> /tmp/logfile_2
done


Last edited by Franklin52; 03-28-2014 at 07:21 AM.. Reason: Please use CODE tags, not ICODE tags for code blocks. Thanks.
# 6  
Old 03-28-2014
yes .please find the output of the for loop :
PHP Code:
bash-3.2# cat /tmp/logfile_1
e1000g0
e1000g1
bash
-3.2# cat /tmp/logfile_2
e1000g0flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4mtu 1500 index 2
        inet 172.16.1.142 netmask ffffffe0 broadcast 172.16.1.159
        ether 0
:50:56:ab:2d:2a
e1000g1
flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4mtu 1500 index 3
        inet 10.18.154.174 netmask ffffffe0 broadcast 10.18.154.191
        ether 0
:50:56:ab:6b:e3 
# 7  
Old 04-01-2014
can someone plz let me know how this output can be reduirected to file.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

output redirection

Hi all I was wondering if there was a slicker way of doing this without the file - awk '{print $2}' FS=":" "${FILE}" > "${TMPFILE}" { read M_GRP_ID || m_fail 1 "Error: Read failed 1 (${FUNCNAME})" read M_GRP_WAIT || m_fail 1 "Error: Read failed 2 (${FUNCNAME})" }... (6 Replies)
Discussion started by: steadyonabix
6 Replies

2. Shell Programming and Scripting

Redirection of ls -l output

Hi I am making a script where i want to redirect the output of ls -l to a file Example #ls -l fil1.txt > /opt/temp/a.txt ac: No such file or directory I want to capture output of this command like here output is ac: No such file or directory can anyone help (4 Replies)
Discussion started by: anish19
4 Replies

3. UNIX for Dummies Questions & Answers

Output redirection

Hello i am trying to write a script that will redirect the output to a certain file. Here is the code so far: #!/bin/bash ps -e | sort | more > psfile When I execute the script nothing happens since i assume the output was redirected to the file called psfile. When I try to look at the... (1 Reply)
Discussion started by: mfruiz34
1 Replies

4. Shell Programming and Scripting

Output redirection

We have an application here that does some table queries and then prints the result on screen. I do not have the code of this application (which i will just call "queryCommand"), but what it does is that you call it with some parameters and it prints some info about the query and then the... (5 Replies)
Discussion started by: jolateh
5 Replies

5. Shell Programming and Scripting

Output redirection meaning

Hi, Can anyone please explain the details of the code below :- ls /etc/*.txt > /dev/null 2>&1 (6 Replies)
Discussion started by: angshuman_ag
6 Replies

6. Shell Programming and Scripting

Redirection output

Hi there I have a script that runs but it outputs everything onto the screen instead of a file. I've tried using the > outputfile.txt however all it does is dump the output to the screen and creates an outputfile.txt but doesn't put anything in that file. Any help would be appreciated ... (6 Replies)
Discussion started by: kma07
6 Replies

7. Shell Programming and Scripting

redirection and output

I'm redirecting the output of a command to a logfile, however, if the user is on a terminal I would also like the output to be displayed on the screen. tar tvf some_tarfile >Logfile if the user is on a term then have the output to the Logfile and also be displayed on the screen at the same... (2 Replies)
Discussion started by: nck
2 Replies

8. Shell Programming and Scripting

how to get desired output after redirection

hi i am running script which contains the commmnds and i am redirecting the script output to a file. like ./script 1> result.txt 2>&1 the above redirection is not working for commands when run in background in a script. but the problem here result.txt containg output which is repeated.... (3 Replies)
Discussion started by: raji
3 Replies

9. Shell Programming and Scripting

Input redirection and for loop

Hello, I need help with a bash script that I try to improve. I could not find answer so far, maybe because I'm not to familiar with the terminology so feel free to correct my language. I have a script that looks like: NODES="node_a node_b node_c" for NODE in $NODES do ... (4 Replies)
Discussion started by: pn8830
4 Replies

10. Shell Programming and Scripting

Keeping vars set in while loop with redirection

Under IRIX 6.5, the Bourne shell is named /bin/bsh. I need to redirect output into a file reading loop, and retain values set within the loop based on processing that goes on within the loop for later processing. This code #!/bin/bsh k=1 cat file | while read k ; do echo "$k" done... (2 Replies)
Discussion started by: criglerj
2 Replies
Login or Register to Ask a Question