Skip to content

Instantly share code, notes, and snippets.

@rluvaton
Last active March 15, 2022 19:54
Show Gist options
  • Save rluvaton/4e7debd7f75ad9b6d596ac9ad87fe8f7 to your computer and use it in GitHub Desktop.
Save rluvaton/4e7debd7f75ad9b6d596ac9ad87fe8f7 to your computer and use it in GitHub Desktop.
Helpful bash snippets

Helpful bash snippets

Git

Diff

Count number of additions in diff between HEAD and master for some file pattern

git diff master --numstat | \
    grep test | \
    awk -F '\t' '{print $1}' | \
    grep . | \
    node -e "console.log(require('fs').readFileSync(0).toString().split('\n').reduce((s, n) => s + (parseInt(n, 10) || 0), 0))"

Explanation

# Get the num stat between HEAD and master
git diff master --numstat | \
    # Filter only relvent data
    grep some-filter | \
    # Get first column i.e number of added lines
    awk -F '\t' '{print $1}' | \
    # Removed empty lines
    grep . | \
    # Sum each line
    node -e "console.log(require('fs').readFileSync(0).toString().split('\n').reduce((s, n) => s + (parseInt(n, 10) || 0), 0))"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment