20 April 2010 16:02 -
Today I made a small and simple script to make my crontabs more readable. The
usage is quite simple. Run te script and redirect the output to a file.
Review this file. Then when the file is ok,
load it with crontab <file>
The script:
#! /usr/bin/env bash
crontab -l | while read min hour day month wday regel
do
if [ x${min:0:1} = "x#" ]
then
echo "${min}" "${hour}" "${day}" "${month}" "${wday}" "${regel}"
else
if [ x${min:0:1} = "x" ]
then
echo
else
printf "%-7s %-7s %-7s %-7s %-7s %s" "${min}" \
"${hour}" "${day}" "${month}" "${wday}" "${regel}"
echo
fi
fi
done | sed 's/[ ]*$//'
13 April 2010 20:16 -
Finally I have some time again to write a blogpost. February and march were busy months in which
I moved from Enschede to Delft. Main advantage of this is of course that I live closer to my
work, which on average safes me around 12 hours a week of travel time. Another advantage
is of course that the house is larger (around 30 m^2) and do not have to park my car 10 minutes
away.
But that was not all that happened in the last 2 months. I also passed the PRINCE 2 Foundation
exam on the 19th of february.
Beside the PRINCE 2 Foundation exam I also received some Novell certification.
Due to my LPIC certifications I became a Novell Certified Linux Administrator and
a Novell Data Center Technical Specialist.