How do i remove the EDT GMT-04:00 from this time command
!addcom -cd=5 time $(time US/Eastern “MMMM Do YYYY, h:mm:ss A”)
I want it to show the day, month & time only like this
Sunday March 21st 2021, 6:48:43 am
Hey @Dusky Sloth!
You're using the wrong quotation marks... Use " instead of “”:
$(time US/Eastern "MMMM Do YYYY, h:mm:ss A")
But this would show the date like March 21st 2021, 6:48:43 AM, by following the documentation, that's how you should go about it to get the result you want:
$(time US/Eastern "dddd MMMM Do YYYY, h:mm:ss a")