#!/bin/bash

line=$1
if [ ! -z "$line" ]; then
    (crontab -u $(whoami) -l; echo "$line" ) | crontab -u $(whoami) -
fi
