Skip to content

Instantly share code, notes, and snippets.

@meain
Created March 13, 2020 05:02
Show Gist options
  • Save meain/d414ec900b39233a96d1823e5cec6fa4 to your computer and use it in GitHub Desktop.
Save meain/d414ec900b39233a96d1823e5cec6fa4 to your computer and use it in GitHub Desktop.
#!/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