Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 577007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:06:27+00:00 2026-05-13T14:06:27+00:00

I’ve tried parsing a list of users currently connected via SSH to a server,

  • 0

I’ve tried parsing a list of users currently connected via SSH to a server, but the results are very irregular, so I was forced to simply do:

$users = shell_exec('who');
echo "<pre>$users</pre>";

Is there a better way to parse the output of who in the command line before I let PHP mess around with it? I want it in an array which contains the username (first column below), the terminal they’re connected on (second column), the date and time they connected (third), and the IP from where they connected (in parenthesis). I’m guessing I should use preg_split to split the data but it seems really irregular sometimes with username length, terminal name, etc..

(some example output of who):

alex     tty7         2010-01-23 17:04 (:0)
alex     pts/0        2010-01-30 17:43 (192.168.1.102)
root     pts/1        2010-01-30 17:45 (192.168.1.102)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T14:06:27+00:00Added an answer on May 13, 2026 at 2:06 pm

    explode()ing on newlines (\n) gives you an array with one item per line, and when you loop through the array, and use preg_split("/\s+/", $sValue, 3), it should give you a new array with every column as an item. Then you need to split the Date and the Addr.

    The full code would be something like this:

    <?php
    $sTempUsers = shell_exec('who');
    $aTempUsers = explode("\n", $sTempUsers);
    
    $aUsers = array();
    foreach($aTempUsers AS $sUser)
    {
        $aTempUser = preg_split("/\s+/", $sUser, 3); // username | terminal | date addr
        preg_match("/^(.+)\s\((.+)\)$/", $aTempUser[2], $aDateAndAddr); // full match | date | addr
    
        $aUsers[] = array(
            $aTempUser[0], 
            $aTempUser[1], 
            $aDateAndAddr[1], 
            $aDateAndAddr[2]
        ); // username | terminal | date | addr
    }
    ?>
    

    You can find the result in $aUsers.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have just tried to save a simple *.rtf file with some websites and
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I want use html5's new tag to play a wav file (currently only supported
I have a French site that I want to parse, but am running into
I need to clean up various Word 'smart' characters in user input, including but
I want to construct a data frame in an Rcpp function, but when I
Seemingly simple, but I cannot find anything relevant on the web. What is the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.