Skip to content

Instantly share code, notes, and snippets.

@patforna
Created December 17, 2015 10:23
Show Gist options
  • Save patforna/bb3d08a1e70504ccf8c3 to your computer and use it in GitHub Desktop.
Save patforna/bb3d08a1e70504ccf8c3 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
grep -rh '@mixin' web/public/css | cut -d' ' -f2 | egrep -o '^[a-z\-]+' > /tmp/mixins
for mixin in `cat /tmp/mixins`; do
echo --- $mixin
grep --exclude mixin.names -ri "@include $mixin" web/public/css | grep -v '//'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment