Is there a view to log and list down the processes executed in last 10 seconds ?
I especially want to trace the command line.
|
If process is not finished, you could find them by:
But if process is already finished, it's less sure: You have to know where to search... Warning! following work only if the binary is not in cache memory: if they was not accessed from a while. Maybe a simple
If else, more sophisticated command could be:
will show up all files accessed from less than one minute. For 10 secs, it's more difficult:
|
||||
|
|
|
Try this:
This will show all processes that was started in last 10 seconds and are still running. |
||||
|
|
ps kstart_time -ef. I think it'll help you to understand how to get what you want. – Eddy_Em Jan 16 at 7:46