Sponsored Content
Top Forums Shell Programming and Scripting Using getopts for handling multiple options Post 302928185 by Don Cragun on Tuesday 9th of December 2014 03:58:01 PM
Old 12-09-2014
Hi veeresh_15,
The "complete" script you provided shows us why you are having problems using getopts, but it doesn't explain what you're really trying to do. You have shown us four sample command lines used to test your option handling capabilities, but to understand how to best help you, what we really need is the Synopsis lines from the man page for your utility (or better yet, the complete man page) so we can understand what options (with and without option arguments) and what operands your script will need to process for your utility.

It is unusual to need an option for "defaults". If you're setting up a utility to create databases, what you're describing as defaults (the database ID, version, and type) don't seem like defaults; they seem like something that would be required to set up any database and they would be different for each database you create. If that is the case here, these three items should be mandatory operands; not options.

I can easily see having default values for database block size and character sets that would apply to most databases you create. And, having options (with option arguments) to override those defaults is perfectly reasonable.

So, if I have guessed correctly, your Synopsis would be something like:
Code:
createdb [-b block_size] [-c character_set] sid version type

and your code should be something more like:
Code:
#!/bin/ksh
# createdb [-b block_size] [-c character_set] sid version type

# Initialize variables
BLK_SIZE=4096
CHAR_SET="AL32UTF8"
IAm=${0##*/}
USAGE='Usage: %s [-b block_size] [-c character_set] sid version type\n'

# Process options:
while getopts "b:c:h" opt
do	case $opt in
	(b)	BLK_SIZE="$OPTARG";;

	(c)	CHAR_SET="$OPTARG";;

	(h)	printf "$USAGE" "$IAm"
		exit 0;;

	(?)	printf "$USAGE" "$IAm" >&2
		exit 1;;
	esac
done
shift $((OPTIND - 1))

# Verify operands:
if [ $# -ne 3 ]
then	printf '%s: 3 operands are required, %d found.\n' "$IAm" >&2
	printf "$USAGE" "$IAm" >&2
	exit 2
fi
ORACLE_SID="$1"
ORACLE_VER="$2"
ENV_TYPE="$3"

# Create the database:
printf 'Create database with these attributes:
	block size:	%d
	character set:	%s
	SID:		%s
	version:	%s
	type:		%s
' "$BLK_SIZE" "$CHAR_SET" "$ORACLE_SID" "$ORACLE_VER" "$ENV_TYPE"
# Add code to acutally create the database here...

And, then you could successfully invoke it with command lines like:
Code:
createdb -b2048 MyDatabase 1 MyType
createdb -c USASCII MyDatabase 1 MyType
createdb -b 20480 -c"UTF-8" MyDatabase 1 MyType

PS
If you're using a 1993 or later version of ksh, you'll get bad option diagnostics consistent with the rest of the diagnostics produced by the above script if you change:
Code:
while getopts "b:c:h" opt

to:
Code:
while getopts -a "$IAm" "b:c:h" opt


Last edited by Don Cragun; 12-09-2014 at 06:36 PM.. Reason: Add PS.
This User Gave Thanks to Don Cragun For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

getopts takes options for parameters

Here is my post with a question about getopts. I am running korn shell on Solaris 5.8. I am trying to ensure that certain options require a parameter, which is easy enough. I have found that if multiple options are entered on the command line together, but the parameter for one of the options is... (1 Reply)
Discussion started by: UCD-Randy
1 Replies

2. UNIX for Advanced & Expert Users

Multiple file handling

Dear All, I have two files, which looks like: File 1 124 235 152 178 156 142 178 163 159 File 2 124|5623 452|6698 178|9995 (8 Replies)
Discussion started by: rochitsharma
8 Replies

3. Shell Programming and Scripting

File handling, getopts command in unix

I need to create a shell script having the menu with few options such as 1. Listing 2. Change permissions 3. Modify Contents 4. Delete Files 5. Exit 1. For 1. Listing: Display a special listing of files showing their date of modification and access time (side by side) along with their... (2 Replies)
Discussion started by: bab123
2 Replies

4. UNIX for Advanced & Expert Users

shred multiple options

I've created a wxpython gui for the shred command. I can successfully mix and match all the shred options except two: -size and --random-source. (Man page definitions below). -size and --random-source seem to only work when they are used as the sole option passed. For example, I can zero a... (0 Replies)
Discussion started by: codecellar
0 Replies

5. Programming

Handling Multiple terminals

Hi, Basically I've written a game in ncurses that supports multiple players. Each player has a process associated with him which shares a segment of memory in which the player's structures are stored, and these structured are accessed by the 'server' program and handled there. The scope of the... (13 Replies)
Discussion started by: dgre0018
13 Replies

6. Shell Programming and Scripting

Intersperse arguments and options w/ getopts

Is it possible to get a script that uses getopts to accept options and arguments in any order? eg. -g -h 2 4 works like -g 2 -h 4. (1 Reply)
Discussion started by: lee.n.doan
1 Replies

7. Shell Programming and Scripting

Help with Handling multiple argument in shell script

Hi i have written a shell script that takes only single ip address from the user and calculates its latency and reliability, can you please tell me that what should be done if i want that user should enter 100 or 1000 ip address (5 Replies)
Discussion started by: Preeti_17
5 Replies

8. Shell Programming and Scripting

Multiple variables options

Hi I'm looking to take a user input and use it to effect just two characters in a command rather than having multiple functions for each one. function baseencode() { echo "This function handles the following: $YELLOW base64 base32 base16 $NORMAL" echo "$GREEN Select 64 32 or 16 $NORMAL"... (2 Replies)
Discussion started by: 3therk1ll
2 Replies

9. Shell Programming and Scripting

ISSUE in handling multiple same name files :-(

Dear all, My work is completely stuck cos of the following issue. Please find it here and kindly help me. Task is following: I have set of files with such pattern 1t-rw-rw-r-- 1 emily emily 119 Jun 11 10:45 vgtree_5_1_pfs.root 3t-rw-rw-r-- 1 emily emily 145 Jun 11 10:46 vgtree_5_3_pfs.root... (4 Replies)
Discussion started by: emily
4 Replies

10. Shell Programming and Scripting

SFTP multiple options

Hi, I am trying to SFTP files in a script that i created. But the problem is i have to use -oPort and -b together. how can i get this done. I have tried as below command in my script but with no luck sftp -oPort=102 -b <batchfilename> username@server sftp -oPort=102 -ob... (1 Reply)
Discussion started by: ramkiran77
1 Replies
All times are GMT -4. The time now is 03:40 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy