Skip to content

Instantly share code, notes, and snippets.

@eseyden
Created July 23, 2015 21:22
Show Gist options
  • Save eseyden/30bbee9eab5c4bd2405c to your computer and use it in GitHub Desktop.
Save eseyden/30bbee9eab5c4bd2405c to your computer and use it in GitHub Desktop.
#!/bin/bash
DIR=$HOME/.local/share/Steam/
echo "Removing libstd"
find $DIR -iname "libstd*" -exec rm -rf {} \;
echo "Removing libgcc"
find $DIR -iname "libgcc*" -exec rm -rf {} \;
echo "All Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment