vote up 0 vote down star

I’m trying to validate input by using egrep and regex.Here is the line from script (c-shell):

echo $1 | egrep '^[0-9]+$'
if ($status == 0) then
set numvar = $1
else
    echo "Invalid input"
    exit 1
endif

If I pipe echo to egrep it works, but it also prints the variable on the screen, and this is something I don't need.

flag

3 Answers

vote up 2 vote down check

To simply suppress output you can redirect it to the null device.

echo $1 | egrep '^[0-9]+$' >/dev/null
if ($status == 0) then
set numvar = $1
else
    echo "Invalid input"
    exit 1
endif

You might also want to consider using the -c option to get the count of matches instead of using using the status.

Also, unless you are using csh, the status is stored in $? not in $status

link|flag
1  
I used the -c option as you suggested, and I also set new variable to be used in if statement. set temp = echo $1 | egrep -c '^[0-9]+$' if ($temp != 0) then – Pat Nov 7 at 11:37
1  
In csh, the exit status is indeed stored in $status – Dennis Williamson Nov 7 at 13:44
I added a clarification about csh and will add a csh tag as well. – Michael Dillon Nov 7 at 13:59
vote up 2 vote down

grep has a -q option that suppresses output

So:

egrep -q '^[0-9]+$'
link|flag
1  
The man page says: "Portable shell scripts should avoid both -q and -s and should redirect standard and error output to /dev/null instead. (-s is specified by POSIX.)" – Dennis Williamson Nov 7 at 13:47
@Dennis - You are right about the portability issue. Actually both the -s and -q options are specified by POSIX. The -q option acts in the way I use it here, the -s option suppresses error messages. See gnu.org/software/grep/… – Peter van der Heijden Nov 7 at 15:08
portable shell scripts probably won't be written in csh – glenn jackman Nov 7 at 16:58
vote up 0 vote down

you can use awk

$ echo "1234" | awk '{print $1+0==$1?"ok":"not ok"}'
ok
$ echo "123d4" | awk '{print $1+0==$1?"ok":"not ok"}'
not ok
link|flag
Thanks but I would prefer the egrep, only because I don't know awk. I will probably give it ago in the future, but as for now I don't have time to learn it. – Pat Nov 7 at 11:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.