1#!/bin/bash 2LOCAL_DIR="$( dirname ${BASH_SOURCE} )" 3git show --name-only --pretty=format: $1 | grep values/strings.xml | while read file; do 4 python3 $LOCAL_DIR/stringslint.py <(git show $1:$file) <(git show $1^:$file) 5done 6