![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| tell me whats wrong in this? | nadman123 | Shell Programming and Scripting | 1 | 04-10-2008 02:11 AM |
| if [ -s $File ] ; Whats wrong in this ?? | varungupta | UNIX for Advanced & Expert Users | 5 | 08-21-2007 02:24 AM |
| Whats wrong with this script? | kayarsenal | Shell Programming and Scripting | 2 | 08-25-2006 10:58 AM |
| Whats wrong with the mv command | dsravan | Shell Programming and Scripting | 0 | 08-10-2006 04:30 PM |
| whats wrong with this awk??? | george_ | Shell Programming and Scripting | 5 | 04-04-2006 05:58 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
tell me whats wrong with this
Code:
#! /bin/bash
USAGE="[[-a ] | [-b]]
if [ $# = 0 ]
then
echo "$USAGE"
exit 1
fi
while getopts lb: OPTION
do
case $(OPTION)in
a) echo Hi there!
exit 2;;
b) echo hello
o) OARG=$OPTARG;;
\?)echo "$USAGE" ;;
exit 2;;
esac
done
shift `expr $OPTIND -1`
Tell me whats wrong with this |
|
||||
|
By quick inspection:
You are lacking a closing quote on the USAGE variable You have the wrong parentheses in "case $(OPTION)". The proper parentheses would be curly braces, but they aren't really necessary here. ${OPTION} or just $OPTION There is a double semicolon missing after the "b" case |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|