Created
July 21, 2020 03:07
-
-
Save mjpitz/724ec1c973a0c8a581f6ac8b859ee24f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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