Module: SystemInformation::Linux::Users
- Defined in:
- lib/systeminformation/unix/users.rb
Class Method Summary collapse
Class Method Details
.loggedin ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/systeminformation/unix/users.rb', line 4 def self.loggedin count = 0 IO.popen('who') do |p| count = p.readlines.size end return count end |