Leser: 45
1 2 3 4 5 6 7
#!usr/bin/perl system("ssh remote"); chdir("/home/remote/test"); system("cp test.txt /home/remote"); system("./perl.pl"); system("exit");
1 2 3 4 5
open(my $ssh "| ssh remote"); print $ssh "cd /home/remote/test"; print $ssh "cp test.txt /home/remote"; print $ssh "./perl.pl"; close($ssh) or die "$!";
1 2 3 4 5
open(my $ssh, "| ssh remote"); print $ssh "cd /home/remote/test"; print $ssh "cp test.txt /home/remote"; print $ssh "./perl.pl"; close($ssh) or die "$!";
Guest werWenn du das als Beispiel für Anfänger schreibst, ja, das solltest du vorher testen!Muss ich denn jeden Code testen, bevor ich ihn veröffentliche?
1 2 3 4 5 6 7 8 9 10
#!/usr/bin/perl use strict; use warnings; open(my $ssh, "| ssh topeg\@localhost"); print $ssh "echo HALLO\n"; print $ssh "cd /\n"; print $ssh "ls -l\n"; print $ssh "exit\n"; close($ssh) or die "$!";
1 2 3 4 5 6
#!/usr/bin/perl open(my $ssh, "| ssh host"); print $ssh "echo Hallo\n"; print $ssh "cd /HOME/host/host\n"; print $ssh "touch itworks.txt\n"; close($ssh) or die "$!";
1 2 3 4 5
#!/usr/bin/perl open(my $ssh, "| ssh host"); print $ssh "ssh host2\n"; print $ssh "echo Hallo\n"; close($ssh) or die "$!";
2009-05-27T16:12:50 GwenDragonWenn du das als Beispiel für Anfänger schreibst, ja, das solltest du vorher testen!
Quotewie kann ich die Ausgabe eines spezifischen Befehl...