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
# 22  
Old 01-02-2012
when we say ip I understand we reffer to $ip variable, but has ip got anything to do with internet protocol sorry for being thick

any good links to most common variables etc?
# 23  
Old 01-02-2012
Quote:
Originally Posted by llcooljatt
when we say ip I understand we reffer to $ip variable, but has ip got anything to do with internet protocol sorry for being thick

any good links to most common variables etc?
hope it's clearER.
Code:
while read llcooljatt 
do    
    echo $llcooljatt 
done < ip_list

This User Gave Thanks to vgersh99 For This Post:
# 24  
Old 01-02-2012
you can name your variables very much any way you want to (see man sh, man ksh, man bash, etc.) ... however ... it is always good to be able to easily figure out what the variables stand for just by looking at the code ... see below ...
Code:
#
# vague variable
#

for a in `< mylist`
do
    echo $a
done

===========
#
# more obvious variable
#

for file in `< mylist`
do
    echo $file
done

This User Gave Thanks to Just Ice For This Post:
# 25  
Old 01-02-2012
Ok I understand the variable can be named anything but is there any significance in ip_list to the variable? If not is llcooljatt the name of where we echo's the results too?
# 26  
Old 01-02-2012
with some limitations, you can have filenames named the same way as your variables if that suits your fancy ... the main thing is that you understand what is in the file just like you would want to understand what the variable stands for ...
This User Gave Thanks to Just Ice For This Post:
# 27  
Old 01-03-2012
Ok so simply put

Variable = where our results echo'd too?
Filename = list of ip addresses
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