Skip to content

Instantly share code, notes, and snippets.

@mjpitz
Created July 21, 2020 03:07
Show Gist options
  • Save mjpitz/724ec1c973a0c8a581f6ac8b859ee24f to your computer and use it in GitHub Desktop.
Save mjpitz/724ec1c973a0c8a581f6ac8b859ee24f to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Quick script that will prepent a `date:` field to all files. Helpful for a qiuck one time hack.
for file in $(find ${1} -type f); do
last_modified=$(git log -n 1 --pretty=format:"%ad" --date=short -- "${file}")
content="---\\ndate: ${last_modified}"
echo "${file}"
sed -i "1s/.*/${content}/" "${file}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment