You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/tools/blame-nick.sh

12 lines
330 B
Bash

#!/usr/bin/env bash
#
# handy script that shows the last changes made by Nick in the rust bindings
RUST_DIR="$(git rev-parse --show-toplevel)/rust"
# …in /src & /examples
for file in $(find "$RUST_DIR/src/" "$RUST_DIR/examples" -name '*.rs'); do
git blame -fn $file 2>&1 | grep "(nick black" | grep -v "no such path";
done