⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hostinfo.pl

📁 JdonFramework need above jdk 1.4.0 This version has passed under Tomcat 4.x/5.x JBoss 3.x/JBoss 4.0
💻 PL
字号:
#!/usr/bin/perl$who = "/usr/bin/who | wc -l";$ps = "/bin/ps -ef h | wc -l";chomp($numUsers = int( `$who` ));chomp($numProcesses = int( `$ps` ));print "$numUsers\n";print "$numProcesses\n";## The following code prints the system uptime and the hostname. These two# items need to be included in every script that you write and should be the# very last thing that is printed.#chomp($uptime =  `/usr/bin/uptime` );print "$uptime\n";chomp($hostname =  `/bin/hostname` );print "$hostname\n";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -