Scripts to make managing the ITL easier.
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.
12345678910111213 |
- cd /cygdrive/c/Users/csguest
-
- find . -maxdepth 1 -type f -ok rm '{}' \;
-
- cd Desktop
- find -not -name "This Pc.lnk" -ok rm '{}' \;
-
- cd ../Documents
- find . -maxdepth 1 -type f -ok rm '{}' \;
- find . -maxdepth 1 -not \( -type d \( -name "MATLAB" -o -name "Visual Studio 2015" \) \) -ok rm -rf '{}' \;
-
- cd ..
- rm -rf Downloads; mkdir Downloads
|