Skip to content

Commit ebc8400

Browse files
author
mike dupont
committed
adding readme
1 parent e039504 commit ebc8400

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Readme.org

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
* Time repo
2+
3+
standard
4+
5+
#+begin_src sh
6+
git clone https://github.com/meta-introspector/time
7+
cd time
8+
git submodule init
9+
git submodule update
10+
11+
#+end_src
12+
13+
#+begin_src sh
14+
today() {
15+
TODAY=$HOME/`date +'%Y/%m/%d'`
16+
if [ ! -d ${TODAY} ];
17+
then
18+
mkdir -p ${TODAY}
19+
fi
20+
cd ${TODAY}
21+
echo $TODAY
22+
pushd $TODAY
23+
}
24+
#+end_src

0 commit comments

Comments
 (0)