#!/bin/sh

# Age calculation
# Changelog:
# 2006-11-28 - created
#

# $Platon$

MYBIRTH=`date -d "1978-10-30" +%s`
NOW=`date +%s`

echo $((${NOW}-${MYBIRTH}))


