aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <chaffinach+git@protonmail.ch>2022-06-17 19:35:51 +0100
committerMatthew Lemon <chaffinach+git@protonmail.ch>2022-06-17 19:35:51 +0100
commitd62a3bbc09568fe5a453d103e325ef809a634e40 (patch)
treed4c2c5472eee4c4d2abe45d90dd9cca191f0aaa3
parent436832b74a7d16e73b0a2d14319b7b39d70117db (diff)
add a level 1 header to new file
Diffstat (limited to '')
-rwxr-xr-xlem7
1 files changed, 4 insertions, 3 deletions
diff --git a/lem b/lem
index 5c4fb9f..6e266ad 100755
--- a/lem
+++ b/lem
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/usr/local/bin/bash
NOTES=/home/$USER/Notes
TARGET_DIR=$NOTES/homezet
-VIM=/usr/bin/vim
+VIM=/usr/local/bin/vim
if [[ "$1" = "-m" ]]; then
msg="${*:2}"
@@ -16,6 +16,7 @@ fi
STAMP="$(date +%G%m%d%H%M%S)"
F_PATH="$TARGET_DIR/$STAMP-$msg.md"
-echo $F_PATH
+
+printf "# %s\n\n", "$msg" >> "$F_PATH"
$VIM "$F_PATH"