Created
April 17, 2015 09:22
-
-
Save vaughany/4a46e3e0e608b3207451 to your computer and use it in GitHub Desktop.
Bash scripts, tips, hits and quick wins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
echo -e "\n\e[1;36mTODO Finder: \e[0;36mSummary\e[0m" | |
grep -iIlr --color --exclude="todo.sh" 'todo' * | |
echo -e "\n\e[1;36mTODO Finder: \e[0;36mDetails\e[0m" | |
grep -iInr --color --exclude="todo.sh" 'todo' * | |
echo -e "\n\e[1;36mManual Finder: \e[0;36mSummary\e[0m" | |
grep -iIlr --color --exclude="todo.sh" 'manual' * | |
echo -e "\n\e[1;36mManual Finder: \e[0;36mDetails\e[0m" | |
grep -iInr --color --exclude="todo.sh" 'manual' * | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment