Post #2015312
2026-05-03 11:06 UTC
append to your ~/.bashrc
note() {
default="notes.txt"
f="${1:-$default}"
date +%Y-%m-%d | tee -a "$f"
cat >> "$f"
echo "---" >> "$f"
}
or just do
cat >> plain.txt
and enjoy your plaintext life one Ctrl+D at a time.
The simplest note taking app for GNU systems. https://sterpeto.vivaldi.net/2026/05/03/the-simplest-note-taking-app-for-gnu-systems/
#plaintext #bash #gnu #note #notetoself
Replies (0)
No replies.