Add thermal sensors to status report
[khome.git] / home / bin / experiment
1 #! /bin/sh
2
3 set -e;
4
5 name="$1";
6
7 if [ "$name" != "" ];
8 then
9 timestamp=`date +'%F--%H-%M--%S'`;
10 directory="$HOME/x/$timestamp--$name";
11 mkdir -p "$directory";
12 cd "$directory";
13 echo "# $name\n" > README.md;
14 git init >&2
15 git add . >&2
16 git commit -m 'Initial commit' >&2
17 echo "$directory";
18 else
19 echo "Please give the experiment a name, as the first argument.";
20 exit 1;
21 fi;
This page took 0.064098 seconds and 4 git commands to generate.