How to test if a variable is in the right format


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to test if a variable is in the right format
# 1  
Old 07-05-2004
How to test if a variable is in the right format

How can I test a variable to see if its in the right format?

The format for the variable would be 'DDMMYYYY HH:MM:SS' and is passed from a command line argument.

Any help would be appreciated
# 2  
Old 07-05-2004
Perhaps try using the touch command, e.g...
Code:
MMDD=$(expr substr "$*" 1 4)
YYYY=$(expr substr "$*" 5 4)
hh=$(expr substr "$*" 10 2)
mm=$(expr substr "$*" 13 2)
ss=$(expr substr "$*" 16 2)
if touch -c -t $YYYY$MMDD$hh$mm.$ss dummyfile
then
   echo valid
else
   echo invalid
fi

# 3  
Old 07-05-2004
Thanks very much

Your help is really appreciated
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Oracle Variable Passing Test

Hi, I am trying to get the oracle variables and pass the values in sql placed in procedure. VARIABLE vstat='ASDS,FGDS,VCGD,VCXC' Query : select distinct dept from College where section in ('C','D') AND CODES ='' AND NAMES IN ('RAJ','SAM'); I want CODES values to be taken from vstat... (1 Reply)
Discussion started by: Perlbaby
1 Replies

2. Shell Programming and Scripting

Split variable length and variable format CSV file

Dear all, I have basic knowledge of Unix script and her I am trying to process variable length and variable format CSV file. The file length will depend on the numbers of Earnings/Deductions/Direct Deposits. And The format will depend on whether it is Earnings/Deductions or Direct Deposits... (2 Replies)
Discussion started by: chechun
2 Replies

3. Shell Programming and Scripting

How to check weather a string is like test* or test* ot *test* in if condition

How to check weather a string is like test* or test* ot *test* in if condition (5 Replies)
Discussion started by: johnjerome
5 Replies

4. Shell Programming and Scripting

Test on string containing spacewhile test 1 -eq 1 do read a $a if test $a = quitC then break fi d

This is the code: while test 1 -eq 1 do read a $a if test $a = stop then break fi done I read a command on every loop an execute it. I check if the string equals the word stop to end the loop,but it say that I gave too many arguments to test. For example echo hello. Now the... (1 Reply)
Discussion started by: Max89
1 Replies

5. UNIX for Dummies Questions & Answers

Ksh How to test if variable is numeric??

I'm trying to test and see whether a variable that is being extracted from a line in a file is numeric or not. I have tried everything that I can think of and I cannot figure out how to get it to work. I am trying to test and see if the string extracted contains 5 numeric digits. This is what I... (8 Replies)
Discussion started by: developncode
8 Replies

6. Shell Programming and Scripting

variable numerical test

Hi I have a variable which should be any number between 1 and 50. It could also be any string/empty string. I have a code written below. The point is when the variable contains string. I don't want the code below to error out. Instead fall in the else bucket. && dothis_1 || dothis_2 (1 Reply)
Discussion started by: tostay2003
1 Replies

7. Shell Programming and Scripting

Test variable

hi, i store a constant in a variable and want to test whether it is M or Z. how can i achieve this?? please help variable='M' if then ehco 'success' fi; is this right ?? (2 Replies)
Discussion started by: javeed7
2 Replies

8. Shell Programming and Scripting

Test file format

Can any one tell me how to test file is in dos format or Unix format? (2 Replies)
Discussion started by: svenkatareddy
2 Replies

9. Shell Programming and Scripting

Test whether absolute path in variable

I'm using the following line in bash to test whether an argument supplied is an absolute path or not: if echo $1 | grep '^/' > /dev/null then absolute=1 else absoute=0 fi The line appears to work but seems somewhat unprofessional looking to me. Is it an acceptable... (2 Replies)
Discussion started by: dkieran
2 Replies

10. Shell Programming and Scripting

test Null variable

hi forum i beginning with script and i want test un null variable in a schell i just don t know the syntax here is a litle example y=test echo $y unset y echo $y (so here Y = Null) if Y=Null then echo "y is null" exit fi (1 Reply)
Discussion started by: kykyboss
1 Replies
Login or Register to Ask a Question