Den 2015-11-12 kl. 00:36, skrev Walter Lapchynski: > Well, I screwed up and got the time for today's wrong. I showed up an > hour late to our meeting. I did manage to get all the logs and have them > on the [page][1] we have dedicated to holding meeting notes. Make sure > to check that out for a wee bit of update and a LOT of information about > mkusb and the possibility of getting it included as a standard thing in > Lubuntu. > > We also discussed about a wee change to the meeting time. We are now > once a month, 2nd Wednesday, at 19:00 UTC. We've also included a little > tool to figure out the time in your area on the [agenda][2] page which > is updated for the next meeting already. Feel free to add any agenda > items you have in mind. Otherwise, just come and hang out. > > Also note that future meetings will be on #lubuntu-devel. This way we > have Meetingology to take care of logging and notes and stuff. > > If there's any other questions, comments, or concerns on the topics > brought up at today's meeting, please don't hesitate to drop a line! > > [1]: https://wiki.ubuntu.com/Lubuntu/IRC%20Meetings > [2]: https://wiki.ubuntu.com/Lubuntu/IRC%20Meetings/Agenda > > -- > @wxl | http://polka.bike > Lubuntu Release Manager & Head of QA > Ubuntu PPC Point of Contact > Ubuntu Oregon LoCo Team Leader > Ubuntu Membership Board & LoCo Council Member > Eugene Unix & GNU/Linux User Group Co-Organizer
Hi everybody, Here is a simple shell-script, that can help converting between UTC and local time, provided you have the correct local time in your computer. (Make it executable and put it in PATH. I put it in ~/bin) ----- sudodus@ssd-grund ~ $ utc2local Usage: /home/sudodus/bin/utc2local [utc-time] /home/sudodus/bin/utc2local 'YEAR-mm-dd HH:MM-utc' Example: /home/sudodus/bin/utc2local '2015-11-22 18:30-utc' ---------------------------------------------------------------- Current UTC time = 2015-11-13 11:54 ##### For the next meeting (the example is for my CET) ##### sudodus@ssd-grund ~ $ utc2local '2015-12-09 19:00-utc' Usage: /home/sudodus/bin/utc2local [utc-time] /home/sudodus/bin/utc2local 'YEAR-mm-dd HH:MM-utc' Example: /home/sudodus/bin/utc2local '2015-11-22 18:30-utc' ---------------------------------------------------------------- UTC time = 2015-12-09 19:00-utc Local time = 2015-12-09 20:00 ---------------------------------------------------------------- Locale: Wed Dec 9 20:00:00 CET 2015 sudodus@ssd-grund ~ $ ----- Best regards Nio
#!/bin/bash echo "Usage: $0 [utc-time]" echo " $0 'YEAR-mm-dd HH:MM-utc'" echo "Example: $0 '2015-11-22 18:30-utc'" echo "----------------------------------------------------------------" if [ "$*" == "" ] then echo "Current UTC time = $(date -u '+%Y-%m-%d %H:%M')" else echo " UTC time = $*" # echo "" timvar=$(date -d "$*" '+%Y-%m-%d %H:%M') echo "Local time = $timvar " timvar=$(date -d "$*") echo "----------------------------------------------------------------" echo "Locale: $timvar " fi
-- Mailing list: https://launchpad.net/~lubuntu-qa Post to : lubuntu-qa@lists.launchpad.net Unsubscribe : https://launchpad.net/~lubuntu-qa More help : https://help.launchpad.net/ListHelp