blob: 9b5a670872b3cdf1f2b4206c9d903e1917c4b0b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/bin/env bash
convert () {
find . -name \*.note \
| while read -r note; do
echo supernote-tool convert -a -t pdf "$note" "${note/.note/.pdf}"
supernote-tool convert -a -t pdf "$note" "${note/.note/.pdf}.tmp"
mv "${note/.note/.pdf}.tmp" "${note/.note/.pdf}"
du -hs "$note" "${note/.note/.pdf}"
echo
done
}
# Mage the PDFs available on my Phone as well
copy () {
if [ ! -d ~/Documents/Supernote ]; then
echo "Directory ~/Documents/Supernote does not exist, skipping"
exit 1
fi
rsync -delete -av --include='*/' --include='*.pdf' --exclude='*' . ~/Documents/Supernote/
echo This was copied from $(pwd) so dont edit manually >~/Documents/Supernote/README.txt
}
convert
copy
|