Skip to content

Instantly share code, notes, and snippets.

@octosteve
Created June 29, 2020 18:57
Show Gist options
  • Save octosteve/220384b525ab3974cf7a6402c4776165 to your computer and use it in GitHub Desktop.
Save octosteve/220384b525ab3974cf7a6402c4776165 to your computer and use it in GitHub Desktop.
#!/bin/bash
old="$IFS"
IFS='_'
notes_dir="~/Documents/notes"
filename="$*"
sep=""
date=$(date +'%Y-%m-%d')
IFS=$old
if [ $filename != "" ]; then
sep="-"
fi
$EDITOR $notes_dir/$date$sep$filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment