🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
423 B

  1. #!/bin/sh
  2. find . -type f \( -name '*.user' -o -name '*.sdf' -o -name '*.ncb' -o -name '*.suo' \) -print -delete
  3. find . -type f \( -name '*.bmp' -o -name '*.wav' -o -name '*.dat' \) -print -delete
  4. find . -depth -type d \( -name Gaming.Desktop.x64 \) -exec rm -rv {} \;
  5. find . -depth -type d \( -name Gaming.Xbox.Scarlett.x64 \) -exec rm -rv {} \;
  6. find . -depth -type d \( -name Gaming.Xbox.XboxOne.x64 \) -exec rm -rv {} \;