Este é um blog onde anoto dicas técnicas de informática e computação.
This is a blog where I write down technical tips on computing.
Be aware that some resources used in this blog may use cookies to collect information used by Ads and Google Analytics. I do not monetize from this website, neither require or use personal information.
Tuesday, March 15, 2016
Find, grep and pipe to Vim
find | grep -i "oracle.*\.c" | xargs sh -c '</dev/tty vim "$@"' ignoreme fvi () { find . -type f | grep -i $@ | xargs -I{} sh -c '</dev/tty vim "$@"' ignoreme -- {} }
No comments:
Post a Comment