Use of expr to calc differenc ein to epoch values


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Use of expr to calc differenc ein to epoch values
# 15  
Old 05-02-2018
please use code tags.
# 16  
Old 05-02-2018
If the numbers involved are simple integers (which seconds from the Epoch should be) then why not do something smarter, such as replacing
Code:
DATE_DIFF=`expr ${CHECK_DATE_1} - ${INSERT_TIME}`

with
Code:
((DATE_DIFF=${CHECK_DATE_1}-${INSERT_TIME}))

You can probably use a let statement or other shell coding and these save the effort of creating a subshell to run expr in.


It might not solve your problem, but it could be a better practice, especially if you are reading large files and doing lots of calculations.



Robin
# 17  
Old 05-02-2018
is there an exit i should be using somewhere?

It seems to be trying to use another empty line but I cant see one anywhere
# 18  
Old 05-02-2018
Can you post the output from this little script:-
Code:
#!/bin/bash

while read line
do
   printf "I have read \"${line}\" from the file.\n\n"
done < /tmp/longrunmon.out


Please carefully wrap it in CODE tags so we can be clear what the output is.


Thanks, in advance,
Robin
# 19  
Old 05-02-2018
Code:
> 
server:/home/oracle>while read line
> do
>    printf "I have read \"${line}\" from the file.\n\n"
> done < /tmp/longrunmon.out

output
Code:
I have read "testinst2,10,1525186184" from the file.

I have read "testinst,10,1525186184" from the file.

server:/home/oracle>

Maybe its that empty lines that has appeared? not quite sure how they appear?

Last edited by jonnyd; 05-02-2018 at 01:01 PM..
# 20  
Old 05-02-2018
are there any ^M-s in the file you're reading from?
do cat -vet /tmp/longrunmon.out and post the output (in code tags).
# 21  
Old 05-02-2018
there are $ signs:

Code:
lit-dbracm01-p002:/home/oracle>cat -vet /tmp/longrunmon.out
testinst2,10,1525186184$
testinst,10,1525186184$

is that normal?
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

date calc

Hi, I need subtract two date values (which are in day of the year format) and the output would give the remaining days. using the command date +"%j" i would get today's 'day of the year' i.e., > date +"%j" 256 Next, i need to take input of a previous date in the format 09/05/2012 and then... (4 Replies)
Discussion started by: sam_bd
4 Replies

2. Shell Programming and Scripting

Calc max of a column

In C that was easy with a for and if. Iam trying to learn a litle more in bash. Example Ronaldo:5800 Figo:4000 Rafael:2321 Kaka:1230 I want the max of the $2 and the output will be: The max value is 5800 from Ronaldo. How can i do this in shell? Thanks for all, folks. (11 Replies)
Discussion started by: rafazz
11 Replies

3. Shell Programming and Scripting

test expr VS [ expr ]

What is the difference between test expr VS . For example : if test 5 -eq 6 echo "Wrong" and if echo "Wrong" bot will give the same output as Wrong. Now, what is the difference between these two? though they are producing the same result why we need two? Any answer will be... (2 Replies)
Discussion started by: ashok.g
2 Replies

4. UNIX for Dummies Questions & Answers

Differenc between ps -ef and top

First of all i really thankful to all those people who have created this site. unix.com rocks man!! I am bit confused about the two commands which are 'top' and 'ps -ef'.:confused: My requirement is that i want to monitor the CPU usage of Operating system and if the CPU usage is more than 90%... (2 Replies)
Discussion started by: Amey Joshi
2 Replies

5. Shell Programming and Scripting

Differenc between print and echo

can anyone explain me what is the difference between echo and print in shell programming? (3 Replies)
Discussion started by: chandhar
3 Replies
Login or Register to Ask a Question