Organize into home and system directories
[khome.git] / bin / experiment
diff --git a/bin/experiment b/bin/experiment
deleted file mode 100755 (executable)
index 3a40a51..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/sh
-
-set -e;
-
-name="$1";
-
-if [ "$name" != "" ];
-then
-    timestamp=`date +'%F--%H-%M--%S'`;
-    directory="$HOME/Experiments/$timestamp--$name";
-    mkdir -p "$directory";
-    cd "$directory";
-    echo "# $name\n" > README.md;
-    git init >&2
-    git add . >&2
-    git commit -m 'Initial commit' >&2
-    echo "$directory";
-else
-    echo "Please give the experiment a name, as the first argument.";
-    exit 1;
-fi;
This page took 0.030739 seconds and 4 git commands to generate.