Skip to content

Instantly share code, notes, and snippets.

@vaughany
Created April 17, 2015 09:22
Show Gist options
  • Save vaughany/4a46e3e0e608b3207451 to your computer and use it in GitHub Desktop.
Save vaughany/4a46e3e0e608b3207451 to your computer and use it in GitHub Desktop.
Bash scripts, tips, hits and quick wins
#!/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