Server IP : 85.214.239.14 / Your IP : 18.226.170.68 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /bin/X11/X11/X11/X11/ |
Upload File : |
#!/usr/bin/perl # # lsdev.pl # # Created by Sander van Malssen <svm@ava.kozmix.cistron.nl> # # Date: 1996-01-22 19:06:22 # Last Change: 1998-05-31 15:26:58 # # $Id: lsdev.pl,v 1.5 1999/05/15 22:16:03 svm Exp $ # # MAIN ####################################################################### open (IRQ, "</proc/interrupts") || die "can't open /proc/interrupts"; while (<IRQ>) { next if /^[ \t]*[A-Z]/; chop; if (/PIC/) { $n = (@line = split()); } else { $n = (@line = split(' [ +] ')); } $name = $line[$n-1]; $device{$name} = $name; @tmp = split(':', $line[0]); $tmp0 = int($tmp[0]); $irq{$name} = "$irq{$name} $tmp0"; } close (IRQ); open (DMA, "</proc/dma") || die "can't open /proc/dma"; while (<DMA>) { chop; @line = split(': '); @tmp = split (/[ \(]/, $line[1]); $name = $tmp[0]; $device{$name} = $name; $dma{$name} = "$dma{$name}$line[0]"; } close (DMA); open (IOPORTS, "</proc/ioports") || die "can't open /proc/ioports"; while (<IOPORTS>) { chop; @line = split(' : '); @tmp = split (/[ \(]/, $line[1]); $name = $tmp[0]; $device{$name} = $name; $port{$name} = "$port{$name} $line[0]"; } close (IOPORTS); printf ("%-16s %4s%6s %s\n------------------------------------------------\n", "Device", "DMA", "IRQ", " I/O Ports"); foreach $name (sort { uc($a) cmp uc($b) } keys %device) { printf ("%-16s %4s%6s %s\n", $name, $dma{$name}, $irq{$name}, $port{$name}); } # The End #################################################################### # Local variables: # rm-trailing-spaces: t