While Read problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting While Read problem
# 1  
Old 03-18-2009
While Read problem

Hello,

I have this simple script

while read name
do
ssh $name "hostname > /tmp/$name.txt"
ssh $name "/opt/ignite/bin/print_manifest | grep Main >> /tmp/$name.txt"
ssh $name "getconf MACHINE_SERIAL >> /tmp/$name.txt"
ssh $name "ioscan -kfnC processor | grep processor | wc -l >> /tmp/$name.txt"
ssh $name "getconf MACHINE_MODEL >> /tmp/$name.txt"
ssh $name "uname -a >> /tmp/$name.txt"
ssh $name "scp /tmp/$name.txt marques:/home/pilga/$name.txt"
ssh $name "rm /tmp/$name.txt"
done < /home/pilga/man_blade.txt


And the file to read the names from is this;

anderson
albers
amon
acheson
doornbos
daigh
drogo
donnelly
revson
boutsen
danner
dalmas
modena
moss
massa
montoya

When i run this script it reads the first name (anderson) but once it has done all the ssh commands it just exits out and does not go to the next line........Guess i have made some obvious error but i cannot see it....

# 2  
Old 03-18-2009
Another way of doing this is:
for name in `cat /home/pilga/man_blade.txt`
do
<your code>
done

NOTE: watch the tick marks they are back ticks
# 3  
Old 03-18-2009
Also, be sure you don't have any hidden characters in the /home/pilga/man_blade.txt file. You can see them with 'vi'. Make sure each line is a new line. If this text file was ported from a windows box it may have hidden characters.
# 4  
Old 03-18-2009
MySQL

The original listing i had was copied from windows notepad so should have been okay, but i have deleted the entire text file and created it again manually in vi but still doesnt work....

Nevermind, that alternative command you suggested worked a treat...

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Read -p problem

Hi, :) I tried to make of "line returns" with "\n" : read -p $'Do you really want append this line in '$CONFIG_FILE''\n'IP CLIENT: '$IP_INPUT' - PATH: '$PATH_INPUT''\n'y/n ?:' CONFIRM_INPUT But it didn't work, please anyone have an idea? :b: (2 Replies)
Discussion started by: Arnaudh78
2 Replies

2. Programming

help: problem with sockets write/read

I am trying to make a server and client, the client will choose between some options and the server will react accordingly. After a some reads and writes that work the server needs to read from client an INT i use this: read(newSd,&k,sizeof(int));But even if all the other times there was no... (1 Reply)
Discussion started by: theSling
1 Replies

3. Shell Programming and Scripting

Array; while read line do problem

Hi - I don't understand why the following script isn't working. I want to read the contents of a while loop into an array, but it looks like the array is destroyed once the while loop is finished. Can anybody help? someFile: PC_1 wf_test1 Test PC_2 wf_test2 Test PC_3 wf_test3 Test Script:... (3 Replies)
Discussion started by: lt1776
3 Replies

4. Shell Programming and Scripting

Problem with read line

Hi everybody, I am new to shell script. Please help me with this problem. I have a file test.txt with the content like this: I have a shell script test.sh like this #!/bin/sh while read line do echo $line >> out.txt done < test.txt out.txt is expected to have the same content... (10 Replies)
Discussion started by: Dark2Bright
10 Replies

5. Shell Programming and Scripting

Problem to read archive

Dear all, I have this archive: cat file.txt archive test 02 sequence 03 02length 52 archive test 02 sequence 04 02length 52 archive test 02 sequence 05 02length 52 teste arquivo 06 sequencia 08 06 length 54 teste arquivo 06 sequencia 09 ... (8 Replies)
Discussion started by: cewa67
8 Replies

6. Shell Programming and Scripting

problem with read command

Hi Guys, I am just trying to read data from a file. The command i tried worked well with AIX server. But in SunOS, it is not reading. cat log.out |sed -n '4,4p'| read value; + sed -n 4,4p + cat log.out + read value echo $value; + echo This is the log of running the script. ... (13 Replies)
Discussion started by: mac4rfree
13 Replies

7. Programming

Problem in read() from a pipe

Hi, Can any one please help me with this. Am struggling hard to get a solution. I am doing telnet through a C program and getting the stdout file descriptor of the remote machine to pipe. read() function is getting data, But whenl it receives SOH character ie. ^A ( Start of heading = Console... (2 Replies)
Discussion started by: JDS
2 Replies

8. Shell Programming and Scripting

Problem with read in sh

I've discovered a very annoying problem in sh: echo -en "one\ntwo\nthree" | while read VALUE do echo "${VALUE}" done This will print one and two, but not three. The last line is IGNORED because it lacks a newline. This makes it hard to use sh for things like CGI scripting; you have... (6 Replies)
Discussion started by: Corona688
6 Replies

9. Shell Programming and Scripting

SH script problem with read

Hi, I'm doing a script that reads lines from a file and then copy them to another file, if the user wants it. But I'having problems to get the user selection because when I do the read to ask the user, the script reads the next line of the file. The script looks like this: #!/bin/sh # ... (2 Replies)
Discussion started by: pmpx
2 Replies

10. Shell Programming and Scripting

read after pipe problem OSX10.4

I use read often in scripts to filter the right part into a variable like: $ print "abc cde efg" | read k l ; print "k=$k, l=$l" k=, l= This works on linux and unix versions I work with. On OSX 10.4 this doesn't work. I found a workaround but would like to know why the original line... (5 Replies)
Discussion started by: relyveld
5 Replies
Login or Register to Ask a Question