Skip to content

Instantly share code, notes, and snippets.

@stevebor1
Last active September 10, 2021 20:28
Show Gist options
  • Save stevebor1/1ac597d032401c627af15f20e36b38fe to your computer and use it in GitHub Desktop.
Save stevebor1/1ac597d032401c627af15f20e36b38fe to your computer and use it in GitHub Desktop.
Log Open Files for a Process
echo | gawk '{ print strftime("[%Y-%m-%d %H:%M:%S] "), $0 }' >> openfiles.txt
sudo lsof -p 26608 | wc -l >> openfiles.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment