10-09-2009
I think that is the functionality of else-if ladder. It will check the first if condition, if its false goes to next if (elif) condition, if its false next elif condition or if the condition returns true it comes out of whole if.
If all the conditions are getting false then it will execute the else part.
If you want your script to execute all the if conditions use
if ..
then
.
.
.
fi
for each checking.
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hi all,
is it possible to create a 'dynamic' case statement.
ie
select option in `ls`
do
case satement depending on results of the above `ls`
done
I hope I have explained this ok!
Thanks
Helen (1 Reply)
Discussion started by: Bab00shka
1 Replies
2. UNIX for Dummies Questions & Answers
I am receiving an elif error on line 13 and I can not figure out the reasoning behind it. I have added the then statement that I was initially missing. Any help would be great.
#The purpose of this script is for the end user to be able to enter a positive number
#User enters a number
NUM=$1... (4 Replies)
Discussion started by: Brewer27
4 Replies
3. Shell Programming and Scripting
In a script?
I have some folders that contain many files of 8MB or more in size. Every day run "for file in F*; do gzip $file; done"
How can I put this in a script to run automatically? (7 Replies)
Discussion started by: bbbngowc
7 Replies
4. UNIX for Dummies Questions & Answers
I want to write a program with the following variables:
a=7000
b=24000
c=613.8
The user can enter two words: Vivid or Blue for example. The challenge is that the user might not want to write the words the way they appear. The user can write V or v or vivid or Vivid or write Blue or blue, or B,... (1 Reply)
Discussion started by: Ernst
1 Replies
5. Shell Programming and Scripting
Hi all,
I think i'm asking a sqtupid question here..
i'm using case sttament, what is the syntax or symbol for "or"?
I thought was ||
here a quick sample of my case statment
echo "Would you like to update your detail ?"
read response
case $response in
... (2 Replies)
Discussion started by: c00kie88
2 Replies
6. Shell Programming and Scripting
I am writing a script to pull diskspace information from our servers. Here is the script that I wrote:
#!/bin/ksh
for host in `cat /oper/hosts/esc.misc`
do
ssh -q -o ConnectTimeout=10 operator@$host df -h|grep "/dev/" |egrep '8%|9%|100%' | awk '{print H " " "at " $5 " with " $4 "... (1 Reply)
Discussion started by: rkruck
1 Replies
7. Shell Programming and Scripting
Hi,
I am writing case statement to execute some finction, my requirement is once one of the case statement is executed again it has to prompt for the option.
for script in `echo "$Script_Selected"`
do
case $script in
1) getNoOFActUsers
;;
2) moveServerrOORotation
;;
... (2 Replies)
Discussion started by: Satyak
2 Replies
8. Shell Programming and Scripting
Hey, guys I really need some help with a project.
"Write a shell program that examines the command line arguments, counts and collects the number of options. Basically it has to collect and count the arguments that start with a "-" and the one's that don't start with a -
I know I have to use... (2 Replies)
Discussion started by: sk192010`
2 Replies
9. Homework & Coursework Questions
Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!
1. The problem statement, all variables and given/known data:
Hey, guys I really need some help with a project.
"Write a shell program that examines the command line... (8 Replies)
Discussion started by: sk192010`
8 Replies
10. Shell Programming and Scripting
Hello, I wrote the case on code but it mistakes. I am not sure.
If/elif code:
#!/bin/ksh
you=$LOGNAME
hour=`date | awk '{print substr($4, 1, 2)}'`
print "The time is: $(date)"
if (( hour > 0 && $hour < 12 ))
then
print "Good morning, $you!"
elif (( hour == 12 ))
then (7 Replies)
Discussion started by: Masterpoker
7 Replies
LEARN ABOUT REDHAT
pthread_condattr_destroy
PTHREAD_CONDATTR(3) Library Functions Manual PTHREAD_CONDATTR(3)
NAME
pthread_condattr_init, pthread_condattr_destroy - condition creation attributes
SYNOPSIS
#include <pthread.h>
int pthread_condattr_init(pthread_condattr_t *attr);
int pthread_condattr_destroy(pthread_condattr_t *attr);
DESCRIPTION
Condition attributes can be specified at condition creation time, by passing a condition attribute object as second argument to
pthread_cond_init(3). Passing NULL is equivalent to passing a condition attribute object with all attributes set to their default values.
The LinuxThreads implementation supports no attributes for conditions. The functions on condition attributes are included only for compli-
ance with the POSIX standard.
pthread_condattr_init initializes the condition attribute object attr and fills it with default values for the attributes. pthread_con-
dattr_destroy destroys a condition attribute object, which must not be reused until it is reinitialized. Both functions do nothing in the
LinuxThreads implementation.
RETURN VALUE
pthread_condattr_init and pthread_condattr_destroy always return 0.
AUTHOR
Xavier Leroy <Xavier.Leroy@inria.fr>
SEE ALSO
pthread_cond_init(3).
LinuxThreads PTHREAD_CONDATTR(3)