trying to trap a variable


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting trying to trap a variable
# 1  
Old 03-23-2012
trying to trap a variable

Hello,

I need a hand please to do with trapping a variable.

Basically I hold todays date in $lDate in form YYYYMMDD (e.g. 20120323)

and I do:

if test -f $impdata/DE${lDate}.ftp
then
DO STUFF!


which works correctly.

However the provider is now giving my an offset date (e.g. yesterday). This really isn't a question about getting yesterday's date as I have found that by using:

PrevDay= expr $lDate - 1

I get 20120322 for this. THe issue that I have is that I was hoping that I could replace my $lDate variable for this with $PrevDate e.g.


if test -f $impdata/DE${PrevDate}SRS.ftp
then
DO STUFF!


However I am not getting anything in PrevDate as it seems to be outputting it to the screen.

As a test I have tried:

PrevDay=123456

echo here1 $PrevDay

PrevDay= expr $lDate - 1 ( if I put $PrevDay here then I get an error)

echo here2 $PrevDay

echo $impdata/DE${PrevDay}.ftp


this gives me the output:

here1 123456
20120322
here2 123456
/ToImport/DE123456.ftp


I'm pretty new to scripting like this, but I assume that I'm using expr incorrectly here, but not sure what and why?

Can anybody help please?

thanks,

Chas
# 2  
Old 03-23-2012
Surround the thing you want to trap in back ticks (`) like so:
variable=`expr $variable + 1`

This will increment $variable by 1
# 3  
Old 03-23-2012
And be aware, that your date calculation will fail every first day of the month...
Have a look at this thread to find some solutions for date calculations.
# 4  
Old 03-23-2012
great guys, thanks for your help Smilie

have a nice evening
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

VM trap may work differently than a pure install trap.

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: That is the last reply I received from my instructor, and I'm looking for some alternatives. When using... (2 Replies)
Discussion started by: newuser45
2 Replies

2. UNIX for Advanced & Expert Users

snmptrapd trap variable value truncated

I have configured snmptrapd to log the traps to log file. the traps received and logged ok based on the mib file definition. there is only one problem. the value of one of the variables seems to be truncated due to end of line or some special char. linux is centos 6.2 snmp software... (4 Replies)
Discussion started by: ahmad.zuhd
4 Replies

3. Shell Programming and Scripting

trap

Hi At the beginning of my script, i will create a file and at the end of the script i will delete that. But i got to delete the file even if the process is forcefully killed, or server is rebooted... I think i can make use of trap signal, but couldnt figure out how and where to use in my... (4 Replies)
Discussion started by: vasuarjula
4 Replies

4. Shell Programming and Scripting

Cntl+z Trap is not detecting ??? Help required to add a trap detection ???

Hi folks, I have tried to add some trap detection in the below script....this script is used to monitor database activities...in a rather awkward way :rolleyes:.... The idea behind adding trap is that....this script creates lots of temporary files in the running folder to store the count... (1 Reply)
Discussion started by: frozensmilz
1 Replies

5. Shell Programming and Scripting

How to trap

I have a script #!/bin/ksh trap cleanup 20 cleanup() { cat $t.log echo Caught exit 1 } if ;then echo Found >>t.log exit 20 else echo Not found >>t.log exit 20 fi (5 Replies)
Discussion started by: thana
5 Replies

6. Shell Programming and Scripting

Trap

Hi All "Identify the behavior of traps, mechanism to implement traps in the snmp framework" What does it mean?? Can anybody explain.. Whats this Trap?? Thanx in Advance. (1 Reply)
Discussion started by: jeenat
1 Replies

7. UNIX for Advanced & Expert Users

Need help with trap

Hi Our problem is knowing: What is the "best" way of simulating a TRAP for ERR within a function, since we know this will not work directly with ksh93 and aix5. How can we save the error encountered in the function and then deal with it in the calling script? Thanks! (3 Replies)
Discussion started by: theteeth07
3 Replies

8. Shell Programming and Scripting

Building a better mouse trap, or How many lines of code does it take to trap a mouse?

Hello all, I'm hoping to get a little insight from some of the wily veterans amongst you. I've written a script to check for new outgoing files to our vendors located on our ssl server. It seems to be working ok, but the final question here, will be one of logic, and/or a better way to... (4 Replies)
Discussion started by: mph
4 Replies

9. Shell Programming and Scripting

trap

I'd like to use "trap" command on my unix machine sunOS 5.7. But somehow when I do "which trap" command, it's no where to be found. Any one knows how I can get it installed? Thanks!! (9 Replies)
Discussion started by: whatisthis
9 Replies

10. UNIX for Advanced & Expert Users

Need help with trap

My problem is this: I need to have a catch-all for my processes. An example would be, using a trap, in the parent, to catch any non-0 exit or invalid command (a way to catch core dumps would be cool, too) in not only the parent, but it's children and they're children. Not only that, but I also... (7 Replies)
Discussion started by: marc6057
7 Replies
Login or Register to Ask a Question