Bonjour voici ma fonction qui ne marche pas
quand je l'appelle plus bas dans mon script
j'ai cette erreur : 0403-057 Syntax error at line 11 : `<' is not matched.


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
f_ftpcible()
{
read PASS?"Entrez votre password : "
ftp -n $CIBLE <<DEB
open $CIBLE
user $MOI $PASS
prompt
cd $HOME
put $HOME/.rhosts
site chmod 600 $HOME/.rhosts
close
by
DEB
}