dotfiles/scripts/notes.sh
Julius Klotz e1f49b8878 initial commit
2025-02-21 11:32:33 +01:00

6 lines
114 B
Bash
Executable File

#!/bin/bash
for f in $(find ~/personal_workspace/notes -name '*.md');
do pandoc -s -o "${f%md}pdf" "${f}";
done