Remote while IFS


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Remote while IFS
# 1  
Old 08-19-2014
Remote while IFS

Hello masters of scripting,

I've been working to develop some basic monitoring scripts. I have solved one problem, but want to know how to solve the other.

I have a script that runs locally to create an output file with the Linux system kernel paramters, preceeded by the system name:

Local Script:
Code:
HOST="$(/bin/hostname)"
KPARMS=$(sysctl -a)
OUTFILE=/var/tmp/sysctl.txt

while IFS= read
do
  echo "${HOST} : ${REPLY}"
done <<< "${KPARMS}" > ${OUTFILE}

An example snippet of the output from the local /var/tmp/sysctl.txt is as follows:


Code:
server1 : sunrpc.max_resvport  =  1023
server1 : sunrpc.min_resvport  =  665
server1 : sunrpc.tcp_slot_table_entries  =  16
server1 : sunrpc.udp_slot_table_entries  =  16

The problem is that I want to turn this into a remotely-executed script. So far I have the following
Code:
#!/bin/ksh

#HOST="$(/bin/hostname)"
HOST="server1"
KPARMS=$(/sbin/sysctl -a)
OUTFILE=/var/tmp/sysctl.txt

ssh -B ${HOST} "while IFS= read ; do echo \"${HOST} : ${REPLY}\"; done <<< \"${KPARMS}\" > ${OUTFILE} ; cat ${OUTFILE}"

Here is the output from /var/tmp/sysctl.txt on the remote server:
Code:
server1 :

How can I correct this?

Thanks in advance for any insight you can provide.

Last edited by rbatte1; 08-19-2014 at 01:45 PM..
# 2  
Old 08-19-2014
I think what you have done here is to execute the command /sbin/sysctl -a in your script before calling the ssh to run this on the remote server.

Try this (untested) adjustment:-
Code:
#!/bin/ksh

#HOST="$(/bin/hostname)"
HOST="server1"
KPARMS="\$(/sbin/sysctl -a)"
OUTFILE=/var/tmp/sysctl.txt

ssh -B ${HOST} "while IFS= read ; do echo \"${HOST} : ${REPLY}\"; done <<< \"${KPARMS}\" > ${OUTFILE} ; cat ${OUTFILE}"

Does that help?



Robin
# 3  
Old 08-19-2014
Hello rbattle,

That helps a little. It seems instead of getting one line of:

Code:
server1 :

I got a line for every variable, but no output from sysctl -a:

Code:
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :
server1 :

etc...

---------- Post updated at 12:34 PM ---------- Previous update was at 12:07 PM ----------

I came up with this and it seems to have worked:

Code:
#!/bin/ksh

OUTFILE=/output/sysctl.txt

for HOST in $(head -14 /server_list | sort)
 do
   KPARMS="$(ssh -B ${HOST} '/sbin/sysctl -a')"
   while IFS= read
    do
      echo "${HOST} : ${REPLY}"
   done <<< "${KPARMS}"
done > "${OUTFILE}"

This User Gave Thanks to LinuxRacr For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash IFS

I am using bash and resetting IFS as below when reading the command line arguments. I do this so I can call my script as in Ex1. Ex1: ./synt2d-ray3dmod.bash --xsrc=12/20/30 This allows me to split both sides so that when I do "shift" I can get 12/20/30 What I do not understand is... (21 Replies)
Discussion started by: kristinu
21 Replies

2. Shell Programming and Scripting

Nested ifs

hi I keep getting an error with this nested if statement and am getting the error unexpected end of file, can anyone help me as to why this wont execute? #!/bin/bash #script to check wether the -i -v statements run correctly removeFile () { mv $1 $HOME/deleted }... (3 Replies)
Discussion started by: somersetdan
3 Replies

3. Shell Programming and Scripting

While loop and IFS?

Hi, while ; do echo "Please enter " read enter yyyy=${enter:0:4} mm=${enter:5:2} dd=${enter:8:2} result=`validateDate $yyyy $mm $dd` When does the loop keeping repeating till?? till 1 is equal to 1? what does this mean "${enter:0:4}" .The 0 and 4 part?? ... (3 Replies)
Discussion started by: sid22
3 Replies

4. Shell Programming and Scripting

How to use IFS in this scenario?

Given the scenario like this, if at all if have to use IFS on the below given example, how it should be used. IFS=/ eg: /xyz/123/348/file1 I want to use the last slash /file1 . So can anyone, suggest me how to pick the last "/" as a IFS. (4 Replies)
Discussion started by: raghunsi
4 Replies

5. Shell Programming and Scripting

read and IFS

Hi, This is out of curiosity: I wanted to extract year, month and date from a variable, and thought that combining read and IFS would help, but this doesn't work: echo "2010 10 12" | read y m d I could extract the parts of the date when separated by a -, and setting IFS in a subshell: ... (3 Replies)
Discussion started by: raphinou
3 Replies

6. Shell Programming and Scripting

while loop with 3 ifs

im messing up somehwere...and can't seem to clean up the script...for it to work objectives: 1. check for today's file, and sleep 30 secs between retries 2. only allow 5 tries before script should fail. 3. if today's file found, wait 30 seconds for it to process.. code: count=0... (8 Replies)
Discussion started by: sigh2010
8 Replies

7. Shell Programming and Scripting

regarding IFS=

hi i am a learner can some explain "export IFS=$(echo "\n\t\a")" i am not able to understand the functionality please help thanks Satya (1 Reply)
Discussion started by: Satyak
1 Replies

8. UNIX for Dummies Questions & Answers

Help on IFS command!

Hi! I am working in korn shell. I want to reset the dimiliter for the set command to "|" but instead of a command prompt return I am getting something as below After issuing the command I am getting this....as if the shell is expecting something else. Can anybody suggest what's the problem. ... (2 Replies)
Discussion started by: udiptya
2 Replies

9. Shell Programming and Scripting

problem with IFS

hi, :) I set IFS=":" But when i try to echo $IFS,i am not getting any thing on the screen escept a blank line. any help pls. cheers RRK (11 Replies)
Discussion started by: ravi raj kumar
11 Replies

10. UNIX for Dummies Questions & Answers

IFS variable

How can I set the value for IFS variable (2 Replies)
Discussion started by: mahabunta
2 Replies
Login or Register to Ask a Question