6 lines
114 B
Bash
Executable File
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
|