El Capitan, Xcode 7.2, MacPorts

In case you are wondering why some ports fail to build after upgrading to El Capitan or upgrading Xcode to version 7.2 here is the detailed answer: https://trac.macports.org/wiki/ProblemHotlist#xcode7.2 In my case issuing a simple chmod and chown […]

check free memory in FreeBSD

In case you’re coming from Linux world to FreeBSD first of all: Welcome! You might miss some commands, like free. Here is a very short tutorial for that. fetch https://raw.githubusercontent.com/ocochard/myscripts/master/FreeBSD/freebsd-memory.sh sh freebsd-memory.sh Then of course […]

Salutation To The Dawn

Look to this day! For it is life, the very life of life. In its brief course Lie all the verities and realities of your existence: The bliss of growth The glory of action The […]

while loop in csh

This made my day, while loop in one line -one liner- under csh printf “while ( 1 ) \n df -m \n echo ‘remaining space’ \n  sleep 60 \n end” | csh -f  Of course, you could […]