File: expected_output.pl

package info (click to toggle)
i3status 2.15-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 916 kB
  • sloc: ansic: 5,233; perl: 158; python: 125; sh: 87; makefile: 5
file content (12 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env perl

use v5.10;
use strict;
use warnings;

chomp(my $cpu_count = `grep -c -P '^processor\\s+:' /proc/cpuinfo`);
if ($cpu_count == 1) {
    print "all: 00% CPU_0: 00% CPU_1: \n";
} else {
    print "all: 50% CPU_0: 00% CPU_1: 100%\n";
}