Bash regex evaluation not workin


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Bash regex evaluation not workin
# 1  
Old 03-07-2016
Bash regex evaluation not workin

I'm building a script that may received start and end date as parameters. I whant to make it as flexible as possible so I'm accepting epoch and date in a way that "date --date=" command may accept. In order to know if parameter provided is an epoc or a "date --date=" string I evaluate if the value is a number. For this a built a function:

Code:
function isNumber ()
{ [[ "$1" =~ "^[0-9]+$" ]] && echo true || echo false
}

The intended use of the funtion is as following

Code:
while getopts :e:F:G:hmo:r:s:vZ dOpts
do
        case $dOpts in
        "e")    if $(isNumber "$OPTARG")
                then
                        dEnd="$OPTARG"
                else
                        dEnd=$(date --date="$OPTARG" +%s)
                fi
                ;;
        "s")    if $(isNumber "$OPTARG")
                then
                        dStart="$OPTARG"
                else
                        dStart=$(date --date="$OPTARG" +%s)
                fi
                ;;
        esac
done
shift $((OPTIND-1))

I'm running on:
Code:
# cat /proc/version
Linux version 2.6.32-279.19.1.el6.x86_64 (mockbuild@x86-001.build.bos.redhat.com) (gcc version 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC) ) #1 SMP Sat Nov 24 14:35:28 EST 2012

And my bash version is:
Code:
# rpm -qa bash
bash-4.1.2-9.el6_2.x86_64

Every time I evaluate the function it returns false. I made this test on my console and it do return false every time.

Code:
# isNumber e-1month
false
# isNumber 1420088400
false
# [[ 1420088400 =~ '[0-9].' ]] && echo true || echo false
false
# [[ 1420088400 =~ '[0-9]+' ]] && echo true || echo false
false
# [[ "1420088400" =~ '^[0-9]+$' ]] && echo true || echo false
false

What I'm I doing wrong with this redex evaluation? I'm I missing an option on bash? This is my invocation line of the script
Code:
#!/bin/bash

Thank you for attention to this message.
# 2  
Old 03-07-2016
Within [[ ]] the pattern/ERE must not be quoted (unless you want to inhibit all special meaning).
Code:
[[ "$1" =~ ^[0-9]+$ ]]

Also there is no need to quote the LHS.
This User Gave Thanks to MadeInGermany For This Post:
# 3  
Old 03-09-2016
Unquoting redex worked

Quote:
Originally Posted by MadeInGermany
Within [[ ]] the pattern/ERE must not be quoted (unless you want to inhibit all special meaning).
Code:
[[ "$1" =~ ^[0-9]+$ ]]

Also there is no need to quote the LHS.
Thank you. I just noticed your reply and yes, it needs to be unquoted.

Code:
# [[ "1420088400" =~ ^[0-9]+$ ]] && echo true || echo false
true
# [[ "1 day ago" =~ ^[0-9]+$ ]] && echo true || echo false
false

Thabnk you again
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Using RegEx with variable within bash if [[ ]]

I stumbled upon a problem, which I simplified to this: There is a list of numbers, stored in variable $LIST, lets use `seq 5 25` for demonstration. There is a number that should be compared against this list. For demonstration I use user input - read VALUE I am trying to compare RegEx... (2 Replies)
Discussion started by: Zorbeg
2 Replies

2. Shell Programming and Scripting

How to Force command substitution evaluation in bash?

OK, I'm striving to abide by all the rules this time. Here is a fragment of my windows10/cygwin64/bash script: export BUPLOG=$(BackupRecords --log "$src") robocopy $(BackupRecords -mrbd "$src" --path "$src") $(BackupRecords --appSwitches "$src") "$src" "$dst" $(BackupRecords --fileSwitches... (15 Replies)
Discussion started by: siegfried
15 Replies

3. Shell Programming and Scripting

How to Force command substitution evaluation in bash?

OK, I'm striving to abide by all the rules this time. Here is a fragment of my windows10/cygwin64/bash script: export BUPLOG=$(BackupRecords --log "$src") robocopy $(BackupRecords -mrbd "$src" --path "$src") $(BackupRecords --appSwitches "$src") "$src" "$dst" $(BackupRecords --fileSwitches... (0 Replies)
Discussion started by: siegfried
0 Replies

4. UNIX for Dummies Questions & Answers

Regex for (a|b) in bash

I am trying to find files using the following by using simple bash script: if -2014 ]]; then echo "yes";fi What I need to find are any files with date 08-**-2014 so August 2014 any files. I can use if -2014 ]]; then echo "yes";fi That works fine. How do I get files beginning with 08... (1 Reply)
Discussion started by: newbie2010
1 Replies

5. UNIX for Dummies Questions & Answers

Need help with Regex for bash

Hi, I am trying to match this word: hexagon-bx.mydomain.com with regex. I have tried this: "\.*]*$" So far I have not been successful. I also need to make sure that the regex will match words that just have lowercase letters and numbers in them, such as camera01. How can I create such an... (5 Replies)
Discussion started by: newbie2010
5 Replies

6. Shell Programming and Scripting

Bash regex help

I've been using the following regex below in a bash script on RHEL 5.5 using version GNU bash, version 3.2.25(1)-release I've tried using the script on RHEL 6.3 which uses GNU bash, version 4.1.2(1)-release I assume there's been alot of changes to bash since that's quite a jump in revisions.... (12 Replies)
Discussion started by: woodson2
12 Replies

7. Shell Programming and Scripting

[BASH] Allow name with spaces (regex)

Hey all, I have a very simple regular expression that I use when I want to allow only letters with spaces. (I know this regex has a lot of shortcomings, but I'm still trying to learn them) isAlpha='^*$'However, when I bring this over to BASH it doesn't allow me to enter spaces. I use the... (3 Replies)
Discussion started by: whyte_rhyno
3 Replies

8. Shell Programming and Scripting

Bash regex

Hello everybody, I'm clearly not an expert in bash scripting as I've written maybe less than 10 scripts in my life. I'm trying to strip an xml string removing every tag in it. I'm using bash substitution to do so, but apparently I missed something about what is a regex for bash ... As an... (4 Replies)
Discussion started by: kerloi
4 Replies

9. Shell Programming and Scripting

rsh within awk is not workin

cat input.sh | awk ' { cur1=tolower($1) cur2=tolower($2) rsh $cur1 report | grep $cur2 } ' hi, Have a look at the above code, the input.txt file contains two words in each line with space as delimiter, the first word is computer name and the 2nd word is file... (2 Replies)
Discussion started by: geeko
2 Replies

10. IP Networking

recv() not workin fine.....

hi ! In my program I have a structure as shown below: struct data { int a; char *b; long c; }str; i have assigned the following values to it: strcpy(str.b,"John"); str.a=10; str.c=123435; The client is tryin to send struct data to the server using send(sock,(char *... (2 Replies)
Discussion started by: mridula
2 Replies
Login or Register to Ask a Question