One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| @echo off | |
| Title Delete .exe Files | |
| echo Current Directory: %CD% | |
| echo. | |
| echo Do you want to delete files with .exe extension in current directory [Y/n]? | |
| set /p CHO= | |
| IF %CHO% == y ( | |
| del /s /q /f %CD%\*.exe | |
| ) ELSE ( | |
| IF %CHO% == Y ( |
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |