Thread Automatisches auslesen von Systemdaten,von denen nur bestimmte Zeilen in einer Textdatei ausgeben werden (46 answers)
Opened by guest at 2011-10-11 10:02

suresh
 2011-10-11 10:58
#153059 #153059
User since
2010-10-12
109 Artikel
BenutzerIn
[default_avatar]
Du könntest ja vielleicht so anfangen:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl 

use strict;
use warnings;

my @cpuinfo = `cat /proc/cpuinfo`;

open (my $writefile, '>',"cpuinfo.txt") or die $!;
foreach my $selected_cpuinfo (@cpuinfo) {
  chomp($selected_cpuinfo);
  if ($selected_cpuinfo =~ m/^processor/ || $selected_cpuinfo =~ m/^cpu MHz/ ) {
    print "CPUINFO: $selected_cpuinfo\n";
    print $writefile "$selected_cpuinfo\n";
  }
}
close($writefile);

View full thread Automatisches auslesen von Systemdaten,von denen nur bestimmte Zeilen in einer Textdatei ausgeben werden