Sometimes when you use Tower with Beanstalk it shows authentication failed error. This short guide will show you how to quickly fix this on macOS.
Continue reading Fix “authentication failed” error in TowerCategory: macOS
How to clone Github repo using SSH
In this “cut to the chase” tutorial I’ll show you how to clone Github repo using ssh on Mac OS or Linux (so that you won’t need to use password).
Continue reading How to clone Github repo using SSHHow to downgrade macOS? Instructions with installer links
How to find and install older macOS/OS X versions? If you want to download installer images and downgrade your operating system here you can find some instructions.
Continue reading How to downgrade macOS? Instructions with installer linksHow to watch file count in a directory (Linux/macOS)?
If you want to monitor file count in some directory simply use this:
watch "ls -A | wc -l"
You can also mask specific files using asterisk char:
watch "ls sess* -A | wc -l"
If you get Argument list too long error, please change command syntax to this:
watch "ls -U | grep -c '^sess'"