1142bf67aa
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
8 lines
259 B
Bash
Executable file
8 lines
259 B
Bash
Executable file
#!/bin/sh
|
|
|
|
arrival="2014-7-14"
|
|
arrival="2014-8-20"
|
|
|
|
export arrival
|
|
|
|
python3 -c 'import os; import datetime; day=datetime.datetime.strptime(os.environ["arrival"], "%Y-%m-%d"); delta = day - datetime.datetime.now(); print("Sanghee is %sd away" % (delta.days))'
|