Skip to content

Instantly share code, notes, and snippets.

@yelizariev
Last active May 22, 2017 06:05
Show Gist options
  • Save yelizariev/191987da31e3af592f4b2d8cd1d2fc68 to your computer and use it in GitHub Desktop.
Save yelizariev/191987da31e3af592f4b2d8cd1d2fc68 to your computer and use it in GitHub Desktop.
cd /path/to/module/
# view source
find . -iname "*.py" -or -iname "*.xml" -or -iname "*.csv" -or -iname "*.yml" -or -iname "*.rst" -or -iname "*.md" | xargs tail -n +1 | less
# view source without docs
find . -iname "*.py" -or -iname "*.xml" -or -iname "*.csv" -or -iname "*.yml" | xargs tail -n +1 | less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment