How to enter month name and display no.


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to enter month name and display no.
# 1  
Old 10-13-2008
How to enter month name and display no.

SPls help me. Need a simple shell script. To enter month name and display its no.

eg: If i enter january. Then answer should be 1.
# 2  
Old 10-13-2008
Code:
#!/bin/sh

read A

case $A in
 [Jj]an)           echo "1";;
 [Ff]eb)           echo "2";;
 [Mm]ar)           echo "3";;
 *)                echo "Try again!";;
esac

exit 0

# 3  
Old 10-13-2008
Code:
declare -a months
months=(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec)
echo ${months[$1]}

Code:
# ./months.sh 3
Mar
#

EDIT: my bad I read it backwards.. DUH!

Last edited by Ikon; 10-13-2008 at 11:57 AM..
# 4  
Old 10-13-2008
And also one more simple one. Generate odd nos from 50 to 1.
# 5  
Old 10-13-2008
Data

hi iam not able to use declare command on my HP-UX server...

$ declare -a months
sh: declare: not found.

is there any restriction to this command .. like OS..
# 6  
Old 10-13-2008
On HP-UX:
Code:
set -A months Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec

# 7  
Old 10-14-2008
If ur input is irrespective of case sensitive, ie. the user may enter lower or capital letters means, then use typeset -u <parameter>. It will convert the input variable to the upper case.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Linux

Bash Display First Friday of the next month

Hello, I need to find the date of next first Friday of the month and set as a variable in a bash script ie - FIRSTFRIDAY=$(date -dfirst-friday +%d) I know date -dfirst-friday doesn't work, but unsure if I can use this / cal + awk or something else to find the right date of the... (7 Replies)
Discussion started by: summerdays
7 Replies

2. Shell Programming and Scripting

Loop logic, enter into respective IF as per enter input file name

have three big data file, however I just need to see the mentioned below one line form the all the file which has SERVER_CONNECTION Value File 1 export SERVER_CONNECTION=//dvlna002:10001/SmartServer File2 export SERVER_CONNECTION=///SmartServer File3 export... (1 Reply)
Discussion started by: Nsharma3006
1 Replies

3. Red Hat

How to find/display out last Friday's date of the month?

Hello, Can you please help me find/display out last Friday's date of the month using command in Unix/Linux (3 Replies)
Discussion started by: sunnysthakur
3 Replies

4. Shell Programming and Scripting

Script to counting a specific word in a logfile on each day of this month, last month etc

Hello All, I am trying to come up with a shell script to count a specific word in a logfile on each day of this month, last month and the month before. I need to produce this report and email it to customer. Any ideas would be appreciated! (5 Replies)
Discussion started by: pnara2
5 Replies

5. Shell Programming and Scripting

display number of days in current month

hi all searched google and here, cant find and am begining to suspect there is no options for this. shell = born with either the date or cal command I need to display the number of days in current month. can anyone point me in the right direction? (10 Replies)
Discussion started by: rontopia
10 Replies

6. UNIX for Dummies Questions & Answers

print previous month (current month minus 1) with Solaris date and ksh

Hi folks month=`date +%m`gives current month Howto print previous month (current month minus 1) with Solaris date and ksh (7 Replies)
Discussion started by: slashdotweenie
7 Replies

7. Shell Programming and Scripting

Display month for Previous day

Hello - I have one question regarding the date. I wanted to display the month name for previous day. The output should be as follows... 5-Feb-09 => February 1-Feb-09 => January 28-Feb-09=> February Here is the code i am using to get the output.... date '+%m %d %Y' | { read MONTH DAY... (4 Replies)
Discussion started by: govindts
4 Replies

8. Shell Programming and Scripting

needs to display month for previous day date

Hello, I wanted to display the month for previous day date. Like, today date is 18-Nov-2008. So the previous date is 17-Nov-2008. The output should be November. If the today date is 1-DEC-2008, then output should be NOVEMBER. If the today date is 1-JAN-2008, then output should be DECEMBER.... (4 Replies)
Discussion started by: govindts
4 Replies

9. Shell Programming and Scripting

display files created in a particular month

hi, i m new to unix. I have been trying to find all the files in my home directory and its subdirectories that are created in the month of september. Can anyone please help me with this??? (1 Reply)
Discussion started by: t_harsha18
1 Replies

10. Shell Programming and Scripting

Enter text and display on logo

Okay, lets say I have a entry field, to enter the persons name. Then I have a image of a car, and when the person hits submit on the form , the image loads and the name the person entered is displayed on the door or the car. How would I do this in a browser.could someone give me a Javascript or... (1 Reply)
Discussion started by: perleo
1 Replies
Login or Register to Ask a Question