Skip to content

Instantly share code, notes, and snippets.

@softius
Last active December 14, 2015 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save softius/5059123 to your computer and use it in GitHub Desktop.
Save softius/5059123 to your computer and use it in GitHub Desktop.
Removes gradients and/or rounded corners from bootstrap css
# removes rounded corners
grep -v "radius" bootstrap.css > bootstrap-no-radius.css
# removes gradient
grep -v "gradient" bootstrap.css > bootstrap-no-gradient.css
# removes both gradient and rounded corners
grep -v "radius" bootstrap.css | grep -v "gradient" > bootstrap-no-radius-gradient.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment