dotfiles/bin/joplin-rename.sh

20 lines
272 B
Bash
Raw Normal View History

2022-08-24 08:07:33 +00:00
#!/bin/bash
# joplin-rename.sh
#
# This script slugifies joplin entities (notes and todos)
# (Work in progress)
set -euo pipefail
set -x
joplin use test-notebook
while IFS= read -r -d '' item ; do
echo "$item"
done < <(joplin ls)
echo "[joplin-rename] All done!"