nixCraft Poll

Topics

Download of the day: Easy date manipulation with yest utility under Linux/UNIX

Posted by Vivek Gite [Last updated: October 12, 2006]

All these years I was using *all dirty shell script hacks* to create my own date manipulation utilities for backups and other admin task. Thanks to this project no more dirty work.

Recently our site visitor Milton left a comment about this nice utility. This utility is very good if you would like to do lots of date manipulation or to crate report/log file names with date in filename.

From the project home page:
yest is a command line date/time manipulation and formatting program, very useful in scripts. You can easily add or subtract days, hours and/or minutes from a specified date. It supports all date command output formats plus more.

This program is called "yest" because the default is to output yesterday's date. This utility knows about leap year, aylight savings time, and such variations.

Task: Install yest

Download yest from project home page. Or use wget command as follows:
$ cd /tmp
$ wget http://easynews.dl.sourceforge.net/sourceforge/yest/yest-2.7.0.3.tgz

Untar the source code:
$ tar -zxvf yest-2.7.0.3.tgz

Compile and install binary
$ su -
# gcc -o /usr/bin/yest yest-2.7.0.3.c

Install man page:
# cp yest-2.7.0.3.man1 yest.1
# gzip yest.1
# cp yest.1.gz /usr/share/man/man1/

How do I use yest?

Following command will display yesterdays date (default):
$ date
Thu Oct 12 23:45:24 IST 2006
$ yest
10/11/2006

Display the date ten days ago (-10 or +10 next 10 days)
$ date
Thu Oct 12 23:46:23 IST 2006

$ yest -10
10/02/2006

$ yest +10
10/22/2006

Format date in dd-mm-yyyy:
$ yest -10 "%d-%m-%Y"
02-10-2006

Get more help
$ yest --help
$ man yest

yest in action

So to executing a script/command on the last day of a month, I was using following script:
#! /bin/bash
TOM=$(TZ=MST-24 date +%d)
if [ $TOM -eq 1 ]; then
# commands or script on the last day of a month
/path/to/mytask
fi

But with yest it is just one line shell script :D
[ $(yest +0 "%d") -eq $(yest "%L") ] && /path/to/mytask || :

=> yest Download is highly recommended tool for all seasoned UNIX admin.

Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.

You may also be interested in other helpful articles:

Discussion on This Article:

  1. tiger Says:

    what about using AT or CRON?

    > at 00:00 Aug 31
    script goes here
    ctrl+D

  2. nixcraft Says:

    Tiger

    Sometime you have 29, 28 (leap year), 30, 31 as month-end day. Sometime day pattern get repeated as 31, 31 (july, aug).

    I don\’t just wanna keep changing at command according to month. I manage 100 of boxes I don\’t have time to keep writing at command for each box. So this tool makes for sense to me.

  3. bleh Says:

    ehm… you have never tried

    date -d “yesterday” or date -d “+10 days” have you?

    date already does all this…

  4. Don Eytel Says:

    Problem compiling an idea.

    gcc -o /home/deytel/bin/yest /home/deytel/yest-2.7.0.4.c
    /home/deytel/yest-2.7.0.4.c: In function `main’:
    /home/deytel/yest-2.7.0.4.c:1470: structure has no member named `tm_zone’

  5. nixcraft Says:

    May be you need headers files…

  6. Robert Says:

    What about when timezone identifiers change?
    Like MST to MDT?

  7. Yogesh Says:

    gr8 …. its rocks on tru64
    i hav used following command to compile

    cc -o yest yest-2.7.0.3.c
    now i can do all date manuculation as i used to do it with GNU date

    Thanks

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Copyright © 2004-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.