Bonjour,

Pour la config d'un projet de ma formation, j'aurai besoin d'un petit coup de pouce.

Je recherche à faire quelque chose du genre :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
@echo off;
:get_content
for /f "delims= " %i in ('wget --no-verbose localhost') goto test;
:test
if %i=='' goto end;
if %1!='' {
	ping 127.0.0.1 -n 5;
	goto get_content;
}
:end
Pourriez-vous m'aider à faire en sorte que ça tourne, svp?