Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/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"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement