Using grep with test and without using [[ ]]


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Using grep with test and without using [[ ]]
# 15  
Old 01-24-2019
Quote:
Originally Posted by MadeInGermany
-0 feels slightly less than 0 Smilie

How about introducing a "feeling" operator (but only for almost-integers)?
# 16  
Old 01-24-2019
Quote:
Originally Posted by RudiC
How about introducing a "feeling" operator (but only for almost-integers)?
On the only 1's complement machines I've ever worked on (CDC 3600 and CDC 6500) you could have both -0 and +0. And if you used the machine language instructions to compare integer values, they tested equal (48-bit integers on the 3600 and 60-bit integers on the 6500). If you use the machine language instructions to compare their bitwise values, they tested unequal (since the sign bit was different).
These 2 Users Gave Thanks to Don Cragun For This Post:
# 17  
Old 01-24-2019
@ Don...

I am experimenting with this in the shell ATM and does indeed have -0:
Minifloat - Wikipedia
Similarly floating point formats in general have this __anomaly__...
(Just for the record.)

@ MadeInGermany...
list ;;, yes, but it does not explain WHY, RudiC's reply just made it make sense even if there is only one command in the list.

Last edited by wisecracker; 01-24-2019 at 07:10 AM.. Reason: Error in reply.
This User Gave Thanks to wisecracker For This Post:
# 18  
Old 01-29-2019
Hi, for fun:
( bash, ksh, zsh ):
Code:
if [ -n "${XX#-}" -a "${XX#-}" = "${XX##*[^0-9]}" ]
then 
  [ "${XX#-}" -eq 0 ] && echo "$XX: null" || { [ "${XX#-}" = "${XX}" ] && echo "$XX: positif" || echo "$XX: negatif" ;}
else
  echo "$XX: ko"
fi

dash:
Code:
if [ -n "${XX#-}" -a "${XX#-}" = "${XX##*[!0-9]}" ]
then 
     [ "${XX#-}" -eq 0 ] && echo "$XX: null" || { [ "${XX#-}" =  "${XX}" ] && echo "$XX: positif" || echo "$XX: negatif" ;}
else
  echo "$XX: ko"
fi

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Is it correct? if test grep EOF $a ...

read a if test grep EOF $a then echo yes file else echo no fi (1 Reply)
Discussion started by: iamsumibisht
1 Replies

2. Shell Programming and Scripting

Grep/print/ a test file

cat abc.txt Filename: SHA_AED_Monthly_SNR_20150331.txt.gz Data Format: ASCII with carriage returns and linefeeds Compression: GZIP GZIP Bytes: 36893068 Unzipped Bytes : 613794510 Records: 851310 Record Length: 738 Blocksize: 32472 Filename: SHA_AED_SNR_ChangeLog_20150331.txt.gz Data... (16 Replies)
Discussion started by: dotran
16 Replies

3. Shell Programming and Scripting

If test grep.... always returns 0 status

Hi all. I am trying to compare and filter two files. I have a bigfile.txt of names and ids and a smallfile.txt of ids only. What I am trying to do is use a while read loop to read the ids in the bigfile and then echo the name and id only if the id exists in the small file. Basically, I'm trying to... (5 Replies)
Discussion started by: jameswatson3
5 Replies

4. Shell Programming and Scripting

searching fileextentions (suffix) with grep and/or test

Hello, I have a problem. I will search files on fileextentions (suffix). It can with the command find, but I will do it with the commands grep and/or test. When i start the script I will see all files with that extention (suffix). Can anyone help me, please? Thanks! Regards, Arjan... (4 Replies)
Discussion started by: arjanengbers
4 Replies

5. 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

6. Shell Programming and Scripting

grep functions, how to test if succeeded

Hello ...again. I am stuck on this part, I have a loop with processes an operations file. and calls different functions depending on what is in loop, which processes a database file... #so far my add function works as intended add() { ...blah blah; } # delete is kinda working... (13 Replies)
Discussion started by: gcampton
13 Replies

7. 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

8. Shell Programming and Scripting

Using grep inside a test

Hi, I want to use grep inside a test statement, but I am getting an error message. Two variables testvarNum=5 testvarNonNum=x echo $testvarNum | grep * The result of this is as follows: 5 However, when I try the following (i.e. to test if the variable is numeric or non-numeric):... (3 Replies)
Discussion started by: dkieran
3 Replies

9. UNIX for Dummies Questions & Answers

Unix grep/test command

Hello, i have a script which checks if the user entered 8 numeric characters in the form of YYYYMMDD (birth date). If the user entered any non numeric characters, an error will be displayed: # Check to see if the 8 characters are all numbers # If not show error essage # And prompt user... (4 Replies)
Discussion started by: netmaster
4 Replies

10. Shell Programming and Scripting

Using grep in a test/if statement

Okay, well this is more or less my first attempt at writing a shell script. Anyways, here's my code: cd ${PATH} if then rm ${FILE} ./anotherScript else exit 1 fi exit 1 Anyways, it's a pretty simple script that is supposed to search for the... (4 Replies)
Discussion started by: cbo0485
4 Replies
Login or Register to Ask a Question