79693210

Date: 2025-07-07 17:22:23
Score: 1.5
Natty:
Report link

Here’s a one-liner to remove all the .nfs* files in the current directory:

lsof .nfs00* | awk 'NR>1 {print $2}' | sort -u | xargs -r kill -9
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aaron Imani