๐ŸŸ My personal dotfiles
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add `replace` helper

+7
+7
local/bin/replace
··· 1 + #!/bin/bash 2 + # 3 + # USAGE: replace MATCHER REPLACEMENT GLOBS 4 + # 5 + # replace username name *.rb 6 + 7 + find . -name $3 | xargs perl -pi -e "s/$1/$2/g"