diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-17 10:26:14 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-17 10:26:14 +0100 |
commit | 7e91a5284e5f83e0ffefb52ba4bb4bb30b497b37 (patch) | |
tree | 3d0bd4c7d9f9d9ab3b59b0f4e648f5fc7a3be26a /lem | |
parent | 70fddf193d8a78e4235d206d8f9386c91b6aa23d (diff) |
Fixes issue of trailing comma in title
Diffstat (limited to '')
-rwxr-xr-x | lem | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,6 +17,6 @@ fi STAMP="$(date +%G%m%d%H%M%S)" F_PATH="$TARGET_DIR/$STAMP-$msg.md" -printf "# %s", "$msg" >> "$F_PATH" +printf "# %s" "$msg" >> "$F_PATH" $VIM "$F_PATH" |