https://github.com/dlicata335/hott-agda
Raw File
Tip revision: dccc6507ccd337103e738a113831422f18dd64eb authored by emblack on 07 September 2017, 12:30:12 UTC
updated thesis source file
Tip revision: dccc650
badpostulates
# excludes:
# - oldlib
# - misc
# - any directories named "scraps" or "in-progress";
# things from these directories should not be imported by anything else!

#!/bin/bash

find . -name "*.agda" | grep -v "oldlib" | xargs grep postulate | grep -v "misc" | grep -v "HoTT Axiom" | grep -v "Agda Primitive"  | grep -v "scraps" | grep -v "in-progress" 

back to top