3 lines
85 B
Bash
Executable file
3 lines
85 B
Bash
Executable file
#!/bin/bash
|
|
find -iname "*$1*" -exec echo \; -exec echo {} \; -exec git blame {} \;
|
|
|