Thread Ausgabe Zahlen -> if
(4 answers)
Opened by Goof120 at 2021-09-28 13:56 Code (perl): (dl
)
1 2 3 4 5 6 7 8 foreach my $h (@ente) { my $output = `smartctl \-l ssd $h| grep Percent | cut \-c 29,30 `; # .... weitere Kommandos .... if ($output > 89) { exit(2); } } Wenn du die ausgabe eiens Shellbefehls abfangen willst, setze in Backticks ` ` bzw. qx(); Last edited: 2021-09-28 16:13:14 +0200 (CEST) |