Scripts to make managing the ITL easier.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
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
|