Created
March 13, 2020 05:02
-
-
Save meain/d414ec900b39233a96d1823e5cec6fa4 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
#!/bin/sh | |
test "" = "$(cat "$1" | head -n 1 | grep -v '^\[.*\]\ .*')" || { | |
FOLDER=$(git diff --name-only --cached | sed 's|/.*||' | uniq -c | sort | awk '{print $2}' | sed 1q) | |
echo "[$FOLDER] $(cat "$1")" | |
echo "[$FOLDER] $(cat "$1")" > "$1" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment