linux - Identify Process Holding Lock on File -
i have file named parent.control create in program, text file. other processes open , lock file. identify process(es) has locked it. possible? i'm using ubuntu looking cross *nix solution.
try
lsof | grep "parent.control" or
fuser parent.control
Comments
Post a Comment