Skip to content

Instantly share code, notes, and snippets.

@pawitk
pawitk / gist:f93185cd172bfa0b80f3921b34af0be0
Created April 19, 2019 18:11
increase osx mojave file limit
echo kern.maxfiles=65536 | sudo tee -a /etc/sysctl.conf
echo kern.maxfilesperproc=65536 | sudo tee -a /etc/sysctl.conf
sudo sysctl -w kern.maxfiles=65536
sudo sysctl -w kern.maxfilesperproc=65536
ulimit -n 65536