Sponsored Content
Top Forums Shell Programming and Scripting Bash script accepting variables in valid number format Post 303017927 by Chubler_XL on Thursday 24th of May 2018 10:37:54 PM
Old 05-24-2018
No leap year tests here - would be impossible without knowing the year for each of the dates.

Code:
#!/bin/bash
MDAYS=(0 31 29 31 30 31 30 31 31 30 31 30 31)

function valid-mm-dd ()
{
     MONTH=${1%-*}
     DAY=${1#*-}
     MONTH=${MONTH#0}
     DAY=${DAY#0}

     [[ $MONTH =~ ^[0-9]{1,2}$ ]] || return
     [[ $DAY =~ ^[0-9]{1,2}$ ]] || return
     (( MONTH > 0 && MONTH < 13 )) || return
     (( DAY > 0 && DAY <= MDAYS[MONTH]))  || return
}
DATE1=$1
DATE2=$2

if valid-mm-dd $DATE1 && valid-mm-dd $DATE2
then
   echo "Correct format"
   echo "DATE1 = $DATE1"
   echo "DATE2 = $DATE2"
else
   echo "Not correct format"
   exit 1
fi

This User Gave Thanks to Chubler_XL For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Number/string format in bash

I would like to change the format of an integer type number adding zeros to the left of it in a script in bash. For example number=1 echo $number 00001 Thanks (3 Replies)
Discussion started by: josegr
3 Replies

2. Shell Programming and Scripting

How create function valid birthday format dd-mm-yyyy

I write a small shell script create Payroll System my trouble is valid format birthday dd-mm-yyyy when you enter birthday if your value enter not match with format dd-mm-yyyy system will display "Fail Format Please re-enter Birthday with format dd-mm-yyyy" but i don't know how create function... (3 Replies)
Discussion started by: kency
3 Replies

3. Shell Programming and Scripting

Defining Dynamic Number of Variables in a Bash Script

Code: $ cat test.bash #!/bin/bash job=$1 steps=$2 num=$(echo "$@" | wc -w) Example Submission: $ ./test.bash BS01 3 1 2 3 What: (2 Replies)
Discussion started by: mkastin
2 Replies

4. Shell Programming and Scripting

how to format a number in bash

Say I have a number x=123, but I want to it be x=000123, because I need to use it in as a file name. thanks! (2 Replies)
Discussion started by: aerosols
2 Replies

5. UNIX for Dummies Questions & Answers

Accepting command line arguments in bash

I have this tcsh code that I want to convert to a bash script. Basically it accepts command line arguments supplied by the user and stores them, so they can be used to run a C++ program. set arg_browseDir_inFileLst = "" set allArgsUpCase = `echo "$*" | tr '' ''` set opt_browseDir_flag =... (17 Replies)
Discussion started by: kristinu
17 Replies

6. UNIX for Dummies Questions & Answers

Bash Floating Number Variables Comparision

I am trying to compare the floating number variables but i am receiving an error, can you please help what is wrong. Thank you. #!/bin/bash var1=100.25 var2=100.25 if (( $var1 == $var2 )); then echo "Matching" else echo "Not Matching" fi Error: ./number.sh: line... (6 Replies)
Discussion started by: Ariean
6 Replies

7. Shell Programming and Scripting

PL/SQL: Specified Number Is Not Valid

Hi I have Unix shell script that invokes PL/SQL procedure. The batch job when executed terminated with the error message:-unlimited: The specified number is not valid for this command.Please let me know what is the root cause of the issue and how to fix the issue. Thanks (1 Reply)
Discussion started by: moonkhan1
1 Replies

8. Shell Programming and Scripting

Check if time format is valid

How can I validate if time (HH:MM:SS) argument is valid? I got this from web but I can't modify it to exit the script if the time argument is invalid. echo $1 | awk -F ':' '{ print ($1 <= 23 && $2 <= 59 && $3 <= 59) ? "good" : "bad" }' ex: ./script.ksh 12:34:21 = okay ./script.ksh... (10 Replies)
Discussion started by: erin00
10 Replies

9. Shell Programming and Scripting

Valid separator in time and date format

Hello. I can use any particular (stupid or not) format when using bash date command. Example : ~> date --date "now" '+%Y-%m-%d %H!%M!%S' 2019-06-03 12!55!33or ~> date --date "now" '+%Y£%m£%d %H¤%M¤%S' 2019£06£03 12¤57¤36 or ~> date --date "now" '+%Y-%m-%d %H-%M-%S' 2019-06-03 12-58-51 ... (4 Replies)
Discussion started by: jcdole
4 Replies

10. Shell Programming and Scripting

Curl not accepting spaces in script via variables

Hi All, I'm trying to run a script which issues rest commands via curl to an endpoint. If I put spaces in fields via something like insomnia, it works, but when I try from an input file, it's failing with a json error. while IFS=, read mname oname <------ my input file... (10 Replies)
Discussion started by: say170
10 Replies
CALENDAR(1)						User Contributed Perl Documentation					       CALENDAR(1)

NAME
Date::Calendar - Calendar objects for different holiday schemes MOTTO
There is more than one way to do it - this is just one of them! PREFACE
Basically, Date::Calendar is just a caching proxy class for Date::Calendar::Year objects, which are embedded in each Date::Calendar object. However, and in contrast to Date::Calendar::Year methods, Date::Calendar methods permit calculations spanning an arbitrary number of years, without loss of efficiency. So you should usually use Date::Calendar and not Date::Calendar::Year, since that way you don't have to worry about calculations crossing year boundaries. Note however that Date::Calendar and Date::Calendar::Year can only deal with years lying within the range [1583..2299]. SYNOPSIS
use Date::Calendar::Profiles qw( $Profiles ); use Date::Calendar; $calendar_US_AZ = Date::Calendar->new( $Profiles->{'US-AZ'} [,LANG] ); $calendar_DE_SN = Date::Calendar->new( $Profiles->{'DE-SN'} [,LANG] ); $year_2000_US_AZ = $calendar_US_AZ->year( 2000 ); $year_2001_DE_SN = $calendar_DE_SN->year( 2001 ); @years = $calendar->cache_keys(); # returns list of year numbers @years = $calendar->cache_vals(); # returns list of year objects $calendar->cache_clr(); $calendar->cache_add(YEAR|DATE,...); $calendar->cache_del(YEAR|DATE,...); $index = $calendar->date2index(YEAR,MONTH,DAY|DATE); @names = $calendar->labels(YEAR,MONTH,DAY|DATE); @holidays = $calendar->labels(); $holidays = $calendar->labels(); @dates = $calendar->search(PATTERN); $dates = $calendar->search(PATTERN); $days = $calendar->delta_workdays(YEAR1,MONTH1,DAY1|DATE1 ,YEAR2,MONTH2,DAY2|DATE2 ,FLAG1,FLAG2); ($date,$rest) = $calendar->add_delta_workdays(YEAR,MONTH,DAY|DATE ,DELTA); $date = $calendar->add_delta_workdays(YEAR,MONTH,DAY|DATE ,DELTA); $flag = $calendar->is_full(YEAR,MONTH,DAY|DATE); $flag = $calendar->is_half(YEAR,MONTH,DAY|DATE); $flag = $calendar->is_work(YEAR,MONTH,DAY|DATE); INTERFACE
Note that whenever a year number, a date, a time or a combined date and time are expected as input parameters by one of the methods of this class, you can always pass a Date::Calc[::Object] date object or an array reference (of an array of appropriate length) instead! See Date::Calc::Object(3) for more details. So instead of calling a given method like this: $object->method1( $year,$month,$day ); $object->method2( $year1,$month1,$day1, $year2,$month2,$day2 ); $object->method3( $year1, $year2, $year3 ); You can also call it like so: $object->method1( $date ); $object->method1( [1964,1,3] ); $object->method2( $year1,$month1,$day1, $date2 ); $object->method2( $date1, $year2,$month2,$day2 ); $object->method2( $date1, $date2 ); $object->method2( $year1,$month1,$day1, [2001,3,17] ); $object->method2( [1964,1,3], $year2,$month2,$day2 ); $object->method2( [1964,1,3], [2001,3,17] ); $object->method2( $date1, [2001,3,17] ); $object->method2( [1964,1,3], $date2 ); $object->method3( $year1, $date2, [2001,3,17] ); And similarly if a time or a combined date and time are expected. If you substitute an expected year number by an anonymous array (this is the recommended way of writing date constants, for increased read- ability of your programs), it must contain three values, nevertheless (otherwise the use of an anonymous array would be pointless). Don't confuse year numbers and their substitutes (a date object or an array reference) with Date::Calendar::Year objects, which are a totally different thing! But incidentally ":-)", you may also pass a Date::Calendar::Year object whenever a year number is expected. However, and perhaps against your expectations at times, especially in conjunction with the method "cache_add()", only the year number from that object will be used, not the year object itself (the year object in question might be using the wrong profile!). Moreover, whenever a method of this class returns a date, it does so by returning a Date::Calc[::Object] date object. DESCRIPTION
o "$calendar = Date::Calendar->new(PROFILE[,LANG]);" The first argument must be the reference of a hash, which contains a holiday scheme or "profile" to be used in all calculations involving the new calendar object. The second argument is optional, and must consist of the valid name or number of a language as provided by the Date::Calc(3) module if given. See Date::Calendar::Profiles(3) and Date::Calendar::Year(3) for more details about these arguments and about how to roll your own calen- dar profiles. The method creates a new calendar object for a given profile, i.e., a given location and its scheme of holidays (or a scheme of your own). This calendar object is a caching proxy object; it stores the reference of the given profile and contains a hash (the cache) of Date::Calendar::Year objects. o "$year = $calendar->year(YEAR|DATE);" This method returns a Date::Calendar::Year object for the given year and the profile that was associated with the given calendar object. If the cache in the given calendar object already contains an object for the requested year, the corresponding object reference is simply returned. If not, a new Date::Calendar::Year object is created using the profile that has been associated with the given calendar object. The new Date::Calendar::Year object is then stored in the calendar object's cache and its object reference is returned. A fatal "given year out of range" error will occur if the given year number lies outside the valid range of [1583..2299]. o "@years = $calendar->cache_keys();" This method returns the list of YEAR NUMBERS of the Date::Calendar::Year objects contained in the given calendar object's cache. o "@years = $calendar->cache_vals();" This method returns the list of OBJECT REFERENCES of the Date::Calendar::Year objects contained in the given calendar object's cache. o "$calendar->cache_clr();" This method clears the entire cache of the given calendar object (by destroying the cache hash and creating a new one). o "$calendar->cache_add(YEAR|DATE,...);" Roughly, this method is a shortcut for for $year (@list) { $calendar->year($year); } o "$calendar->cache_del(YEAR|DATE,...);" This method removes the Date::Calendar::Year objects whose year numbers are given from the cache of the given calendar object. Year numbers for which the calendar object's cache doesn't contain an entry are simply ignored. o "$index = $calendar->date2index(YEAR,MONTH,DAY|DATE);" This method converts a given date into the number of the day in that year (this is sometimes also referred to as the "julian" date), i.e., a number between 0 (for January 1st) and the number of days in the given year minus one, i.e., 364 or 365 (for December 31st). You may need this in order to access the bit vectors returned by the Date::Calendar::Year methods "vec_full()", "vec_half()" and "vec_work()". If the Date::Calendar::Year object for the given YEAR is not in the $calendar's cache yet, it will be created and added. An exception ("invalid date") is thrown if the given arguments do not constitute a valid date, or ("given year out of range [1583..2299]") if the given year lies outside of the permitted range. o "@names = $calendar->labels(YEAR,MONTH,DAY|DATE);" "@holidays = $calendar->labels();" "$holidays = $calendar->labels();" If any arguments are given, they are supposed to represent a date. In that case, a list of all labels (= names of holidays) associated with that date are returned. The first item returned is always the name of the day of week for that date. The corresponding year object for the given date's year is added to the calendar's cache first if necessary. If no arguments are given, the list of all available labels in all years that have previously been accessed in the given calendar (i.e., the years which are already in the given calendar's cache) is constructed. Note that this means that the returned list will be empty if there are no year objects in the given calendar's cache yet (!). The returned list does NOT include any names of the days of week (which would be pointless in this case). Multiple labels are reported only once. Usually all years have the same set of labels, so it may seem superfluous to scan all the years in the cache instead of just one. But there may be exceptions, because it is possible to define calendar profiles which do not contain all possible holidays in every year. See Date::Calendar::Profiles(3) and Date::Calendar::Year(3) for more details. In list context, the resulting list itself is returned. In scalar context, the number of items in the resulting list is returned. o "@dates = $calendar->search(PATTERN);" "$dates = $calendar->search(PATTERN);" This method searches through all the labels in all years that have previously been accessed in the given calendar (i.e., the years which are already in the given calendar's cache) and returns a list of date objects with all dates whose labels match the given pattern. (Use the methods "cache_clr()", "cache_add()" and "cache_del()" in order to put the year numbers you want into the calendar object's cache, or to make sure it only contains the year numbers you want to search.) Note that this is a simple, case-insensitive substring search, NOT a full-fledged regular expression search! The result is guaranteed to be sorted chronologically. In scalar context, only the number of items in the resulting list is returned, instead of the resulting list itself (as in list context). o "$days = $calendar->delta_workdays(YEAR1,MONTH1,DAY1, YEAR2,MONTH2,DAY2, FLAG1,FLAG2);" "$days = $calendar->delta_workdays(DATE1,DATE2,FLAG1,FLAG2);" This method calculates the number of work days (i.e., the number of days, but excluding all holidays) between two dates. In other words, this method is equivalent to the "Delta_Days()" function of the Date::Calc module, except that it disregards holidays in its counting. The two flags indicate whether the start and end dates should be included in the counting (that is, of course, only in case they aren't holidays), or not. It is common, for example, that you want to know how many work days are left between the current date and a given deadline. Typically, you will want to count the current date but not the deadline's date. So you would specify "true" ("1") for FLAG1 and "false" ("0") for FLAG2 in order to achieve that. In other words, a value of "true" means "including this date", a value of "false" means "excluding this date". As with the "Delta_Days()" function from the Date::Calc module, the dates have to be given in chronological order to yield a positive result. If the dates are reversed, the result will be negative. The parameter FLAG1 is associated with the first given date, the parameter FLAG2 with the second given date (regardless of whether the dates are in chronological order or not). An exception ("invalid date") is raised if either of the two date arguments does not constitute a valid date. o "($date,$rest) = $calendar->add_delta_workdays(YEAR,MONTH,DAY, DELTA);" "($date,$rest) = $calendar->add_delta_workdays(DATE,DELTA);" "$date = $calendar->add_delta_workdays(YEAR,MONTH,DAY, DELTA);" "$date = $calendar->add_delta_workdays(DATE,DELTA);" This method is the equivalent of the "Add_Delta_Days()" function from the Date::Calc module, except that it adds work days and skips hol- idays. In other words, you can add or subtract a number of work days "DELTA" to/from a given date and get a new date as the result (as a Date::Calc object). You add days (i.e., you go forward in time) with a positive offset "DELTA", and you subtract days (i.e., you go backwards in time) with a negative offset. Note that an exception ("invalid date") is raised if the given date argument does not constitute a valid date. In scalar context, the method just returns the resulting date object, whereas in list context the method not only returns the new date, but also a "rest". This rest is useful for cases in which your profile contains "half" holidays, or when you add or subtract fractions of a day. Sometimes it is not possible to accomodate the requested number of work days, and a rest remains. This rest can currently only assume the value "0.0" (zero), "-0.5" (minus one half) or "0.5" (one half), provided you use only integral or multiples of 0.5 as offsets. A rest of zero indicates that the calculation yielded an exact result. If the rest is 0.5 or -0.5, this is to be interpreted as "the resulting date at 12:00 o'clock", instead of as "the resulting date at 0:00 o'clock". The rest is always positive (or zero) if the offset "DELTA" is positive (or zero), and always negative (or zero) if the offset is nega- tive (or zero). Example: #!perl use Date::Calendar; use Date::Calendar::Profiles qw( $Profiles ); $year = shift; $cal = Date::Calendar->new( $Profiles->{'sdm-MUC'} ); ($date,$rest) = $cal->add_delta_workdays($year,1,3, -3); $date->date_format(1); print "$date = $date, $rest = $rest. "; __END__ This program calculates "January 3rd of the given year minus 3 work days": > perl test.pl 2001 $date = 28-Dec-2000, $rest = 0. > perl test.pl 2002 $date = 28-Dec-2001, $rest = -0.5. Note that December 31st is a "half" holiday in 2001 for the calendar profile used in this example. You can easily verify the results above with the help of the "calendar.cgi" CGI script or the "linearcal.pl" script from the "examples" subdirectory in the Date::Calc distribution. o "$flag = $calendar->is_full(YEAR,MONTH,DAY|DATE);" This method returns "true" ("1") if the bit corresponding to the given date is set in the bit vector representing "full" holidays, and "false" ("0") otherwise. I.e., the method returns "true" if the given date is a (full) holiday (according to the calendar profile associated with the given calen- dar object). The corresponding Date::Calendar::Year object is created first and stored in the calendar object's cache if necessary (if it's not already there). Note that you can get a reference to this bit vector (in order to use this bit vector in bit vector operations) as follows: $vec_full = $calendar->year($year)->vec_full(); The number of bits in this bit vector is the same as the number of days in the given year "$year", which you can retrieve through either ""$days = $vec_full->Size();"" or ""$days = $year->val_days();"". See Date::Calendar::Year(3) and Bit::Vector(3) for more details. o "$flag = $calendar->is_half(YEAR,MONTH,DAY|DATE);" This method returns "true" ("1") if the bit corresponding to the given date is set in the bit vector representing "half" holidays, and "false" ("0") otherwise. I.e., the method returns "true" if the given date is a half holiday (according to the calendar profile associated with the given calendar object). Note that if a date is a "full" holiday, the "half" bit is never set, even if you try to do so in your calendar profile, on purpose or by accident. The corresponding Date::Calendar::Year object is created first and stored in the calendar object's cache if necessary (if it's not already there). Note that you can get a reference to this bit vector (in order to use this bit vector in bit vector operations) as follows: $vec_half = $calendar->year($year)->vec_half(); The number of bits in this bit vector is the same as the number of days in the given year "$year", which you can retrieve through either ""$days = $vec_half->Size();"" or ""$days = $year->val_days();"". See Date::Calendar::Year(3) and Bit::Vector(3) for more details. o "$flag = $calendar->is_work(YEAR,MONTH,DAY|DATE);" This method returns "true" ("1") if the bit corresponding to the given date is set in the bit vector used to perform all sorts of calcu- lations, and "false" ("0") otherwise. The corresponding Date::Calendar::Year object is created first and stored in the calendar object's cache if necessary (if it's not already there). BEWARE that the "work" in this method's name does NOT come from "work days"! It comes from the fact that the corresponding bit vector can be used for any "work" that you need to do. In other words, it's a "work space". Therefore, this bit vector might contain about everything you could imagine - including a bit pattern which marks all "work days" with set bits, if it so happens! But you better don't rely on it, unless you put the bit pattern there yourself in the first place. Note that you can get a reference to this bit vector (in order to fill it with any bit pattern you like) as follows: $vec_work = $calendar->year($year)->vec_work(); The number of bits in this bit vector is the same as the number of days in the given year "$year", which you can retrieve through either ""$days = $vec_work->Size();"" or ""$days = $year->val_days();"". See Date::Calendar::Year(3) and Bit::Vector(3) for more details. SEE ALSO
Date::Calendar::Year(3), Date::Calendar::Profiles(3), Date::Calc::Object(3), Date::Calc(3), Bit::Vector(3). VERSION
This man page documents "Date::Calendar" version 5.3. AUTHOR
Steffen Beyer mailto:sb@engelschall.com http://www.engelschall.com/u/sb/download/ COPYRIGHT
Copyright (c) 2000 - 2002 by Steffen Beyer. All rights reserved. LICENSE
This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, i.e., under the terms of the "Artistic License" or the "GNU General Public License". Please refer to the files "Artistic.txt" and "GNU_GPL.txt" in this distribution for details! DISCLAIMER
This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the "GNU General Public License" for more details. perl v5.8.0 2002-09-29 CALENDAR(1)
All times are GMT -4. The time now is 05:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy