Skip to content

Instantly share code, notes, and snippets.

@gagomes
Last active October 31, 2016 16:13
Show Gist options
  • Save gagomes/1dbf6ba17320581f2c355e5e3e4c1ad9 to your computer and use it in GitHub Desktop.
Save gagomes/1dbf6ba17320581f2c355e5e3e4c1ad9 to your computer and use it in GitHub Desktop.
cron script to create a tags file for all git repositories
for dir in $(find $HOME -type d -name .git); do cd $dir/..; ctags -R . ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment