I have below scripts which has 4 program function which need to be executed based on input from terminal.
Like below
echo " Choose Complete Single Cmd as CMD or ALL : ALL or CMD?"
Here if enter any other value than ALL or CMD ..Script should end and exit.
If user enter ALL
then all 4 program function should execute.
If user enter CMD
then again from below menu user need to select option
Select the HC CMD to execute and analyse
A. State"
B. active"
If choose A
then function program "function Exe_Cmd_State" should execute
if choose B
then "function Exe_Cmd_active" should execute.
If put other value than A and B then script should stop and exit.
I have executed but getting error mentioned as below
Getting below errors while executing
Quote:
$ ./testcondition
Choose Complete Single Cmd as CMD or ALL : ALL or CMD?
ALL
#####################################################Prints the cluster status#######################################
Executing Status...
Done...
###########################################To check Active Alarms####################################################
Executing active...
Done...
########################################
# State
########################################
############ DONE
########################################
# Active
########################################
############ DONE
./testcondition: line 52: syntax error near unexpected token `else'
./testcondition: line 52: `else'
eshaqur@SA-00001256 ~
$ ./testcondition
Choose Complete Single Cmd as CMD or ALL : ALL or CMD?
CMD
Select the HC CMD to execute and analyse
A. State
B. active
A
./testcondition: line 52: syntax error near unexpected token `else'
./testcondition: line 52: `else'
eshaqur@SA-00001256 ~
$ ./testcondition
Choose Complete Single Cmd as CMD or ALL : ALL or CMD?
CMD
Select the HC CMD to execute and analyse
A. State
B. active
B
./testcondition: line 52: syntax error near unexpected token `else'
./testcondition: line 52: `else'
Hi everyone, I'm new here and just a beginner in linux scripting.
Just want to ask for help on this one.
I am trying to create a script that will accept user input (year-month and user/s).
I wanted to have the script to continue running, until the user inputs a DATE and name/s of user/s. ... (2 Replies)
Using Linux (bash), I have two files which contain information about berries. Example:
file1.txt:
Blueberry blue 14
Raspberry red 12
Blackberry dark 4
file2.txt
Blackberry sour 4 3
Blueberry tasty 12 78
Strawberry yummy 33 88
I want to merge these two files into one. The desired... (5 Replies)
#/bin/sh
echo "enter the user name"
read $username
echo "Enter new home directory"
read $newhd
usermod -d $newhd $username ;;
error while executing :
enter the user name
Rev
Enter new home directory:
/home/58745
usermod: option requires an argument -- 'd'
Try `usermod --help' or... (2 Replies)
i have a script which takes input from user, if user gives either Y/y then it should continue, else it should quit by displaying user cancelled.
#!/bin/sh
echo " Enter your choice to continue y/Y OR n/N to quit "
read A
if
then
echo " user requested to continue "
##some commands... (7 Replies)
Hi gurus,
I have a requirement where I need to remotely run a perl script as another user.
Running the script locally as the required user is fine, however I need to su with the script due to filesystem permission issues. I do not want to update permissions on the remote server due to security... (5 Replies)
Hi Jim,
I have following script,i which i need to take dynamic value .
script,
nawk -v v1=grep"INT_EUR" $propertifilename | cut -d"=" -F2` -F'~' '{if (NF-1 !=v1)
{print "Error in " $0 " at line number "NR" tilde count " N-1}}' $filename
In the above script i want to use INT_EUR as a variable... (2 Replies)
Hello
I am trying to create a user input shell scipt. The objective is user should enter the circuit number and the input is saved in a log file. If the user does not enter anything then the question should prompt it until the circuit no. is entered.
Can any one please correct the code below.... (3 Replies)
Hi,
I have a perl script which prints me the epoch value of a specific date and time given.Now I want to proceed to a next step ie i want to give the input at the time of execution.
I have to initialise the date and time values in the script before executing it.But now i want to give the date... (3 Replies)
I am using festival speech synthesis system and I would like to allow user input in a browser. This will be taken by a php page which is then supposed to pass the input text to a perl script. The perl script should pass this text to the festival engine by executing a unix command. this in turn... (2 Replies)
Hi,
I need to get the user input and execute a particular script based on the input provided.
For E.g. When I execute the script say Test.sh it should prompt "For which country I need to execute the script? (US/India)"
Based on the input as US or India from the user the execution of... (8 Replies)