Skip to content

Instantly share code, notes, and snippets.

@ericdcobb
Created October 20, 2016 20:55
Show Gist options
  • Save ericdcobb/f1fae8c6392f149eb125ac693a59592e to your computer and use it in GitHub Desktop.
Save ericdcobb/f1fae8c6392f149eb125ac693a59592e to your computer and use it in GitHub Desktop.
Continuously Count open files for a supplied process, OSX
#!/bin/bash
echo "Counting files open by PID $1"
echo "Press [CTRL-C] to stop..."
while :
do
lsof -p $1 | wc -l
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment