Skip to content

Instantly share code, notes, and snippets.

@mz0
Last active April 15, 2019 17:01
Show Gist options
  • Save mz0/a1695cb73c648d21185f2dbc3e5ed66e to your computer and use it in GitHub Desktop.
Save mz0/a1695cb73c648d21185f2dbc3e5ed66e to your computer and use it in GitHub Desktop.
Set archive message file date to the value of the "Date:" field of that message
for f in *; do touch -d "$(grep Date $f | sed "s/^Date: //")" $f; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment