Allow space-separated title words
authorSiraaj Khandkar <siraaj@khandkar.net>
Tue, 4 Jan 2022 16:37:25 +0000 (11:37 -0500)
committerSiraaj Khandkar <siraaj@khandkar.net>
Tue, 4 Jan 2022 16:47:18 +0000 (11:47 -0500)
home/bin/x

index 0faa918..59a4710 100755 (executable)
@@ -2,15 +2,15 @@
 
 set -e;
 
-name="$1";
+name=$(echo "$@" | sed 's/\s\+/-/g');
 
 if [ "$name" != "" ];
 then
-    timestamp=`date +'%F--%H-%M--%S'`;
+    timestamp=$(date +'%F--%H-%M--%S');
     directory="$HOME/x/$timestamp--$name";
     mkdir -p "$directory";
     cd "$directory";
-    echo "# $name\n" > README.md;
+    printf '# %s\n' "$name" > README;
     git init >&2
     git add . >&2
     git commit -m 'Initial commit' >&2
This page took 0.021379 seconds and 4 git commands to generate.