Skip to content

meta-introspector/time

Repository files navigation

Time repo

standard

git clone https://github.com/meta-introspector/time
cd time
git submodule init
git submodule update
today() {
    TODAY=$HOME/`date +'%Y/%m/%d'`
    if [ ! -d ${TODAY} ];
    then
	mkdir -p ${TODAY}
    fi
    cd ${TODAY}
    echo $TODAY
    pushd $TODAY
}