Sponsored Content
Top Forums Shell Programming and Scripting Korn Shell Script - Getting yesterdays date Post 43162 by frustrated1 on Wednesday 12th of November 2003 11:33:58 AM
Old 11-12-2003
Thanks - I have found a way myself now...


datestamp=`date '+%Y%m%d'`
yest=$((datestamp -1))



Cheers!!
This User Gave Thanks to frustrated1 For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Get yesterdays date given todays date

Hi Guys. I am very new to UNIX. I need to get yesterdays and tommorows date given todays date. Which command and syntax do i use in basic UNIX shell. Thanks. (2 Replies)
Discussion started by: magikminox
2 Replies

2. Shell Programming and Scripting

yesterdays date

To get yesterays date, execute the command : TZ=aaa24 date +%Y%m%d Output format will be yyyymmdd (2 Replies)
Discussion started by: sujju1985
2 Replies

3. UNIX for Dummies Questions & Answers

How to get yesterdays julian date

Hi, Was using date +%Y%j to get current julian date. Can anyone let me know how can I get y'day's julin date. Thx Did check FAQ but couldn't find anything. Thanks. (3 Replies)
Discussion started by: er_ashu
3 Replies

4. UNIX for Dummies Questions & Answers

Need to pull Yesterdays Date...

I tried this and it works for the most part, but if the date is 20090301, it displays 20090300. YESTERDAY=$((`date +%Y%m%d` -1)) (2 Replies)
Discussion started by: cards0622
2 Replies

5. Shell Programming and Scripting

Filtering the yesterdays date from log files via script.

hi All, I have this sample text file - access.log: Jan 18 21:34:29 root 209.151.232.70 Jan 18 21:34:40 root 209.151.232.70 Jan 18 21:34:43 root 209.151.232.70 Jan 18 21:34:56 root 209.151.232.70 Jan 18 21:35:10 root 209.151.232.70 Jan 18 21:35:23 root 209.151.232.70 Jan 18 21:36:04 root... (2 Replies)
Discussion started by: linuxgeek
2 Replies

6. Shell Programming and Scripting

How to find yesterdays file - shell script

Hey guys - i have a script (below) that searches for current files in a particular directory. However i was wondering how to make it search for "yesterdays" file. For instance it looks for a file from yesterday and no older than that. I used stat command to check for file information: ... (6 Replies)
Discussion started by: DallasT
6 Replies

7. Shell Programming and Scripting

how to get the yesterdays date?

Hi All, Can anybody help me to get the yesterdays date in perl script. My script is as below #!/bin/perl -w $yes=system("TZ=IST+24 date +%d-%m-%Y"); print "$yes\n"; script is writting the date but with 0 pls see the output below #!/bin/perl -w $yes=system("TZ=IST+24 date... (2 Replies)
Discussion started by: jam_prasanna
2 Replies

8. Shell Programming and Scripting

Korn Shell Date Formatting

I am serching for a file created today like so: TODAY=$(date +"%b-%d") T_FILE=$(find /export/home/dan/ck/reports/t-status-t.txt-$TODAY-05-00-0?.csv) The file it is searching for is titled: /export/home/dan/ck/reports/t-status-t.txt-Jun-29-05-00-01 however, I when... (2 Replies)
Discussion started by: ther2000
2 Replies

9. Shell Programming and Scripting

Get yesterdays Date for Input Date

Hi, I have been trying to get the yesterdays date for the Input date I pass. I know how to do for the current timestamp but how to do for the input date. Is there any way I can convert to epoch time and do manipulations and back to human readable date? Please help Thanks ... (1 Reply)
Discussion started by: abhi1988sri
1 Replies

10. Shell Programming and Scripting

How to do Date Manupulation in Korn Shell?

Hi All, I need to find the date 19days back from the current date: eg: if today is 17 March 2013 then the output should be : 26 Feb 2013 Can i do this using date command in Korn Shell? And also if i need future 15 days date from current date, how to that? Any help appreciated :) ... (3 Replies)
Discussion started by: Arun Mishra
3 Replies
AMANDA-MATCH(7) 						    Miscellanea 						   AMANDA-MATCH(7)

NAME
amanda-match - Common Amanda Match Expression DESCRIPTION
Several Amanda commands allow the user to specify dumps using "match expressions". This manual page describes the syntax of these expressions. In some places, only certain match expressions are allowed. However, several commands take a dump specification ("dumpspec") consisting of a sequence of several expressions intended to match particular dumps in the catalog. Other applications take a DLE specification which indicates a set of DLEs to be operated on. These formats are described below. HOST &; DISK EXPRESSIONS The hosts and disks match by word. Each word is a glob expression, and words are separated by the character '.' for host expressions and '/' for disk expressions. You can anchor the expression on the left with a '^' or on the right with a '$'. The matcher is case insensitive for hosts but case sensitive for disks. A match succeeds if all words in the expression match contiguous words in the host or disk. If the disk is a UNC ("\windowsshare") then all '' are converted to '/' before the match. Using '' is complicated because of the extra quoting required by the shell and amanda. It's easier to use '/' because it requires less quoting ("//windows/share") The special characters follow. Note that the shell interprets some of these characters, so when used on the command line, they must be escaped appropriately for the shell. dot (.) word separator for a host / word separator for a disk word separator for a UNC disk ^ anchor at left of word $ anchor at right of word ? match exactly one character except the separator * match zero or more characters except the separator ** match zero or more characters including the separator [...] match exactly one of the characters enclosed by the brackets. [!...] match exactly one character that is not enclosed by the brackets. Examples hosta Will match hosta, foo.hosta.org, and hoSTA.dOMAIna.ORG but not hostb. host Will match host but not hosta. host? Will match hosta and hostb, but not host or hostabc. ho*na Will match hoina but not ho.aina.org. ho**na Will match hoina and ho.aina.org. ^hosta Will match hosta but not foo.hosta.org. sda* Will match /dev/sda1 and /dev/sda12. /opt Will match the disk opt but not the host opt. (note dots:) .opt. Will match the host opt but not the disk opt. / Will match the disk / but no other disk. /usr Will match the disks /usr and /usr/local. /usr$ Will match the disks /usr but not /usr/local. share Will match the disks \windows1share and \windows2share. share* Will match the disks \windowsshare1 and \windowsshare2. //windows/share Will match the disk \windowsshare. DATESTAMP EXPRESSIONS
A datestamp expression is either a prefix of the datestamp, or a range expression (separated by '-') matching several prefixes. A leading ^ is removed, while arailing $ will force an exact match. Examples 20001212-14 match all dates beginning with 20001212, 20001213 or 20001214 20001212-4 same as previous 20001212-24 match all dates between 20001212 and 20001224 2000121 match all dates that start with 2000121 (20001210-20001219) 2 match all dates that start with 2 (20000101-29991231) 2000-10 match all dates between 20000101-20101231 200010$ match only 200010 LEVEL EXPRESSIONS
Level expressions are either prefix matches e.g., "1", which matches "1", "10", and "123", absolute matches e.g., "3$" which only matches "3", or a range e.g., "3-5" which only matches levels 3, 4, and 5. DUMP SPECIFICATIONS
A dump specification is used to select one or more dumps from the catalog. It consists of a sequence of match expressions in the order host, disk, datestamp, and level. Note that some commands do not take a level argument, out of historical accident. Note, too, that the datestamp expression matches the time that the dump was made on the Amanda client, rather than the date it was moved to tape. Examples amtool MyConfig ^vpdesktop$ all dumps of host "vpdesktop" amtool MyConfig '*' /var/stage All dumps of /var/stage on any host amtool MyConfig www1 /var/www '*' www2 /var/www '*' All dumps of /var/www on www1 and www2 (assuming amtool does not require a level argument) DLE SPECIFICATIONS
A DLE specification is used to select one or more DLEs. It consists of a sequence of match expressions. The first must be a host, and subsequent expressions will be experimentally matched against both hosts and disks in the disklist(5), preferring hosts. This dynamic matching process can lead to odd behavior in extreme cases (e.g., where a disk and a host have the same name), but for most uses does exactly what is expected. Examples amtool MyConfig vpdesktop /home/anderson /home/anderson on host vpdesktop amtool MyConfig '*' ^/etc '*' ^/var All DLEs matching ^/var or ^/etc on any host amtool MyConfig web1 www web2 www If no host matches "www", all DLEs matching www on hosts web1 and web2. If a host matches "www", then all DLEs on hosts www, web1, and web2. SEE ALSO
amanda(8), amanda(8), amfetchdump(8), amrestore(8), amadmin(8), amvault(8), amflush(8), amdump(8) The Amanda Wiki: : http://wiki.zmanda.com/ AUTHOR
Dustin J. Mitchell <dustin@zmanda.com> Zmanda, Inc. (http://www.zmanda.com) Amanda 3.3.1 02/21/2012 AMANDA-MATCH(7)
All times are GMT -4. The time now is 04:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy