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