Script to iterate over several options


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Script to iterate over several options
# 8  
Old 03-22-2019
Although i am sure Corona688s suggestion is working fine for reasons of maintainability and understandability my suggestion is to use arrays for this kind of data. If the number of paramter sets to cycle through increases it is easier to extend this way. Something like this:

Code:
BASE=/opt/SP/
server[1]="server1" ;    user[1]="user1"  ;     dom[1]="dom1"
server[2]="server2" ;    user[2]="user2"  ;     dom[2]="dom2"
server[3]="server3" ;    user[3]="user3"  ;     dom[3]="dom3"

(( i = 1 ))
while [ $i -le ${#server[@]} ] ; do
        ssh -t "${user[$i]}@${server[$i]}" "cd $BASE/${dom[$i]} ; exec bash"
        (( i += 1 ))
done

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Iterate over `dirs` in a bash script

I would like to iterate over `dirs`in a script, but the script will never show more than one (current) folder #! /bin/bash for i in `dirs` do echo ${i} done echo ++++++++++++++++++ for i in $( dirs -p ) do echo ${i} done echo ------------------ dirscontent=`dirs` echo... (5 Replies)
Discussion started by: alexanderb
5 Replies

2. UNIX for Dummies Questions & Answers

Script to iterate all command line arguments

Hi guys, I am having trouble with this script. What i want it to do is to iterate all command line arguments in reverse order. The code below does this fine but i need the output to print the words on separate lines instead of one line: #!/bin/bash #Takes in the arguments and displays them... (7 Replies)
Discussion started by: pipeline2012
7 Replies

3. Shell Programming and Scripting

script to iterate

Hi i need to find x in the following equation such that it satisfies this condition: y/x-ln(x)-1.24=0 how can i write a script to iterate to give random x to satisfy this equation. y is different each time too. any help with awk/shell script will be awesome! thanks (1 Reply)
Discussion started by: saint2006
1 Replies

4. Shell Programming and Scripting

shell script options

one thing i was trying to figure out is if you can give people the option to choose what they want to do in a shell script. for example, let's just say that you have a simple shell script to install a couple of programs, can you make it to where you can press a certain key to install a certain... (1 Reply)
Discussion started by: hotshot247
1 Replies

5. Shell Programming and Scripting

Need script to count specific word and iterate over number of files.

Hi Experts, I want to know the count of specific word in a file. I have almost 600+ files. So I want to loop thru each file and get the count of the specific word. Please help me on achieving this... Many thanks (2 Replies)
Discussion started by: elamurugu
2 Replies

6. UNIX for Dummies Questions & Answers

[solved] Script creation (how to include options in the script)

Hi guys i have written a script which takes the options given to him and execute itself accordingly. for example if a script name is doctortux then executing doctortux without option should made doctortux to be executed in automatic mode i.e. doctortux -a or if a doctortux is needed to run in... (4 Replies)
Discussion started by: pinga123
4 Replies

7. Shell Programming and Scripting

Passing options into a script

Afternoon all, I have been writing a script to do some selects on a table dependent on what options are selected when the script is run: #!/bin/ksh set -x set -m if then echo "usage: msglog.ksh -da <date and time> -i <interface> -m <msg> -di <direction> -mi <MIR>" exit 1 fi... (3 Replies)
Discussion started by: chris01010
3 Replies

8. Shell Programming and Scripting

Help with options and arguments to a script

I'm trying to write a script that accepts both arguments and options, e.g. ./script -h 1 -m 15 -s 30 or ./script -h 1 -m 15 -s 30 I'd like for any of the arguments and options to be optional, and the option values should be numerals only. I've tried both getopt and getopts but I... (1 Reply)
Discussion started by: Ilja
1 Replies

9. UNIX for Dummies Questions & Answers

Iterate a min/max awk script over time-series temperature data

I'm trying to iterate a UNIX awk script that returns min/max temperature data for each day from a monthly weather data file (01_weath.dat). The temperature data is held in $5. The temps are reported each minute so each day contains 1440 temperature enteries. The below code has gotten me as far as... (5 Replies)
Discussion started by: jgourley
5 Replies
Login or Register to Ask a Question
YPINIT(8)						    BSD System Manager's Manual 						 YPINIT(8)

NAME
ypinit -- initialize NIS subsystem SYNOPSIS
ypinit -c [domainname] [-l server1,...,serverN] ypinit -m [domainname] [-l server1,...,serverN] ypinit -s master_server [domainname] [-l server1,...,serverN] DESCRIPTION
ypinit initializes the files and directories that are required for a NIS client or server. If domainname isn't specified, the default domain (as returned by domainname(1)) is used. The following options are available: -c Create a NIS client. Initializes /var/yp/binding/<domain>.ypservers to contain a list of ypservers for ypbind(8) to connect to. -l server1,...,serverN Set the list of client servers from the command line rather than prompting for them interactively. The format is a comma separated list of server names with no spaces. -m Create a master NIS server. Generates map data from local files (/etc/master.passwd, /etc/group, etc.). -s master_server Create a slave server. Downloads the maps from master_server, which should be the active master NIS server. To rebuild or refresh the maps for the NIS domain <domain>, change to the /var/yp/<domain> directory and run make. FILES
/var/yp master NIS directory; contains the template makefiles. /var/yp/<domain> directory to store NIS maps for <domain>. /var/yp/binding/<domain>.ypservers list of NIS servers to bind to. SEE ALSO
domainname(1), make(1), makedbm(8), mknetid(8), nis(8), stdethers(8), stdhosts(8), ypbind(8), yppush(8), ypserv(8) AUTHORS
Originally written by Mats O Jansson <moj@stacken.kth.se>. Modified by Jason R. Thorpe <thorpej@NetBSD.org>. BSD
February 26, 2005 BSD