The Cookie Machine - Click here to drag window

The Cookie Machine (TCM) Future Applications:

β˜‘ View cookies used on the Pippim website.
β˜‘ Send cookie via mail. For backup or sharing.
β˜‘ Receive cookie via mail. From yourself or colleague.
β˜‘ Countdown Timers. For multi-phase time sensitive missions.
β˜‘ And in the future... Other ways of sharing/using Cookies.

If you can read me, I'm broken!

Views: 1,228β€…    Votes:  2β€…    βœ… Solution
Tags: bash   date   time   epoch  
Link: πŸ” See Original Question on Stack Overflow ⧉ πŸ”—


I have two variables $sunrise=”7:23 am” and $sunset=”6:10 pm”. I need to convert both of them to today’s epoch equivalent as in:

secSunrise=($date ... "$sunrise" ... +"%s")
secSunset=$(date ... "$sunset" ... +"%s")

The only thing I’ve figured out so far is doing it with current date-time:

$ secNow=$(date +"%s")
$ echo $secNow
1488331535

How to square this circle and plug the HH:MM am/pm 12-hour formatted variable into the date command?

⇧ Run a specific command with root password prompt even if running as root Using Zenity to maintain configuration file  β‡©