This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Arquivo de exemplo para descriptografar os dados do visa checkout apos validacao do usuario | |
* este codigo esta na documentacao disponivel em | |
* https://developer.visa.com/capabilities/visa_checkout/docs | |
* | |
*/ | |
/** | |
* Exeuta o primeiro nivel de descriptografia |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: initial count | |
SET i=0 | |
setlocal EnableDelayedExpansion | |
:: filter for extension, jpg as example | |
for %%f in (*.jpg) do ( | |
:: rename the current file to the new name | |
ren "%%~nf%%~xf" "!i!.jpg" | |
:: increase the counter |
NewerOlder