Reputation: 87
The command ls -lu script_name.sh only gives last access time of script. Is there any way to determine.
Upvotes: 0
Views: 3051
Reputation: 136237
Processes in Linux do not normally leave traces after they terminate, unless they create or modify files, write syslog messages, or audit subsystem is on and it keeps track of exec*
calls.
Upvotes: 4