Skip to content

Instantly share code, notes, and snippets.

@abramovk
Last active December 2, 2023 11:56
Show Gist options
  • Save abramovk/a6c40117b2b468d39fa5cebf17b6fd6e to your computer and use it in GitHub Desktop.
Save abramovk/a6c40117b2b468d39fa5cebf17b6fd6e to your computer and use it in GitHub Desktop.
Update datetime from google
#!/bin/sh
httpdate="$(wget --no-cache -S -O /dev/null google.com 2>&1 |
sed -n -e 's/ *Date: *//p' -eT -eq)"
[ -n "$httpdate" ] && date -s "$httpdate"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment