Last active
May 22, 2017 06:05
-
-
Save yelizariev/191987da31e3af592f4b2d8cd1d2fc68 to your computer and use it in GitHub Desktop.
source stats. Latest version here: https://odoo-development.readthedocs.io/en/latest/migration/index.html
This file contains 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
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