Drupal cheat sheet: Load up .info files for modified features

I often use drush fua to update existing site features on my development server. While it's a great shortcut to update the features' content, version numbers aren't automatically incremented. There's a ticket on Drupal.org proposing this feature, but as usual things got complicated.

For my benefit (and perhaps yours) here's my quick-and-dirty way of loading up the changed .info files into my favorite X editor, Komodo.

git status -s | grep .info | awk '{print $2}' | xargs komodo

Once there, increment, save, git add and you're set to commit. Sure, I could do a sed instead of manually editing things, but it doesn't take that long, really.

Hope that helps.