how to run an already made script run against a list of ip addresses solaris 8 question


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting how to run an already made script run against a list of ip addresses solaris 8 question
# 15  
Old 01-02-2012
what variable is $ip ? what can be in it?

Code:
while read ip
do
   echo $ip
done < ip_list

can you put comments need to get it into my head
# 16  
Old 01-02-2012
Why don't you try executing the code and see?
$ip here will have values 1.1.1.1 2.2.2.2 etc depending on the contents of the file ip_list!

--ahamed
This User Gave Thanks to ahamed101 For This Post:
# 17  
Old 01-02-2012
yes works a treat - excellent.

please can I have comments on while code pls pls pls...
# 18  
Old 01-02-2012
What comment?
It is obvious no?
Or what don't you understand?
This User Gave Thanks to vbe For This Post:
# 19  
Old 01-02-2012
ok here's my understanding...

Code:
while read ip (while read is a linux script ? ip is there any significance to internet protocol?
do (ok do the following scripts twice)
  check_GE-VLANStats-P3 $ip (then echo to my variable $ip)
  check_GE-VLANStats-P3 $ip
done < ip_list

(when ip_list is finished then were done?)

?
# 20  
Old 01-02-2012
While <condition true>;do;done : In this case while there is an IP to read from input; do;etc...
the done is executed after the last line given in input (< sign)
This is the standard way to NOT use cat (useless use of cat...) which would have been like:
Code:
cat ip_list | while read IP
do
..
done

I put the bit of code here so you see the "done" and so you can compare with its counterpart you know
This User Gave Thanks to vbe For This Post:
# 21  
Old 01-02-2012
dunno if this would be clearer ...
Code:
#
# this is in sh
#

for ip in `cat ip_list`
do
    check_GE-VLANStats-P3 $ip
    check_GE-VLANStats-P3 $ip
done

to avoid the UUOC condition referred to by vbe -- use a shell that can handle redirects better (i.e., bash or ksh) than sh ...
Code:
#
# this works in bash and ksh
#

for ip in `< ip_list`
do
    check_GE-VLANStats-P3 $ip
    check_GE-VLANStats-P3 $ip
done

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

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to run #groups command on list in a file

I have to provide a listing of all usernames and group assignments on Linux servers running SLES 12 SP 3. I am trying to automate this via a #for loop. It is not doing as desired and could use a little assistance. Here is the code: #!/bin/bash for uname in 'cat $(hostname)_unlist.txt' do... (8 Replies)
Discussion started by: Kentlee65
8 Replies

2. Shell Programming and Scripting

Shell script run in a case statement call to run a php file, also Perl

Linux System having all Perl, Python, PHP (and Ruby) installed From a Shell script, can call a Perl, Python, PHP (or Ruby ?) file eg eg a Shell script run in a case statement call to run a php file, also Perl or/and Python file??? Like #!/usr/bin/bash .... .... case $INPUT_STRING... (1 Reply)
Discussion started by: hoyanet
1 Replies

3. Shell Programming and Scripting

Script fails to run properly when run from CRONTAB

Hello all, I'm trying to write a script to gather and send data and it works just fine at the bash command line, but when executing from CRON, it does not run properly. My scripting skills are pretty limited and there's probably a better way, but as I said it works at the command line, but... (12 Replies)
Discussion started by: rusman
12 Replies

4. AIX

My script didn't run every run every minute at cronjob

In my cronjob, I would like to schedule my script.sh to run every minutes. I crontab -e and have in line below but it didn't seems to run at all. * * * * * script.sh When I run it manually, I can run it. Is that anything wrong with the above line? If I change it to something like below,... (4 Replies)
Discussion started by: ngaisteve1
4 Replies

5. Shell Programming and Scripting

Question regarding shells and subshells when a script is run

I have the following script running with nohup on one of my servers: #!/bin/bash #\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ #set log number #i=1 #\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ #Check if log exits, if so incrememnt log number up so we don't clobber #while... (8 Replies)
Discussion started by: DeCoTwc
8 Replies

6. UNIX for Dummies Questions & Answers

help to make list of files and run script..

Hey, I have finally made a command that works and now has to run it on 200+ files to run it on. How do I do that? Just fyi and if it complicates anything my commandline is: awk '{if ($1 ~ /1/) print $2}' file (yup, is should print $2 if $1 is a certain value) It doesn't work when I: ... (2 Replies)
Discussion started by: lost
2 Replies

7. Solaris

how do I start a script in run level 3 in solaris?

Hi, how do I start a script in run level 3 in solaris? (4 Replies)
Discussion started by: mokkan
4 Replies

8. UNIX for Dummies Questions & Answers

Made command into a script but now won't run

Hello, After seeing in a Unix cheatsheet that I could add commands into a file and run that file as a command to save on typing, i tried it with this: #! /bin/csh # Backup website excluding directories that do not change rsync -e "ssh -p 2222" -axzvc --progress --stats --compress-level=9... (9 Replies)
Discussion started by: patwa
9 Replies

9. UNIX for Advanced & Expert Users

script to run different shells which run different processes

Hi, Would like to ask the experts if anyone knows how to run a script like this: dtterm -title shell1 run process1 on shell1 dtterm -title shell2 run process2 on shell2 cheers! p/s: sorry if i used the wrong forum, quite concussed after watching world cup for several nights; but I... (2 Replies)
Discussion started by: mochi
2 Replies
Login or Register to Ask a Question