The following table is the mysql database table(i.e select * from users) I want the last updated time row using linux command?
+------------+----------+---------+--------------+--------------+-----------+--------------+--------+------+--------------+
| time | userid | groupid | jobs_running | jobs_pending | job_limit |
+------------+----------+---------+--------------+--------------+-----------+--------------+--------+------+--------------+
| 1476274005 | achandra | | 4 | 0 | 0 |
| 1476274793 | akawle | | 52 | 48 | 0 |
| 1476274793 | awle | | 56 | 49 | 0 |
| 1476274799 | awlnbkle | | 59 | 67 | 0 |
Expected Output:
| 1476274793 | akawle | | 52 | 48 | 0 |
| 1476274793 | awle | | 56 | 49 | 0 |
| 1476274799 | awlnbkle | | 59 | 67 | 0 |