home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2013 / 2013.06.linuxmafia.com / linuxmafia.com / pub / linux / utilities-general / lastday < prev    next >
Text File  |  2005-04-10  |  464b  |  15 lines

  1. #!/bin/bash
  2. # Karsten M. Self Mon Mar 21 16:57:30 PST 2005
  3. # Free use, distribution, and modification with no restrictions, granted.
  4. # NO WARRANTY
  5. # ------------------------------------------------------------------------
  6. # Test if today is the last given weekday of month
  7. # ------------------------------------------------------------------------
  8.  
  9. export PATH=3D/usr/bin:/bin
  10.  
  11. if [ $( date -d '+ 7 days' +%-d) -lt $( date +%-d ) ]
  12.     then true
  13.     else false
  14. fi
  15.