2020-12-08 01:58:34 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-12-29 16:50:00 +01:00
|
|
|
readonly joplin_dir="/usr/share/joplin/"
|
2020-12-08 01:58:34 +01:00
|
|
|
|
|
|
|
if [[ ! -d $joplin_dir ]]; then
|
2020-12-29 16:50:00 +01:00
|
|
|
echo "Cannot find ${joplin_dir}"
|
2020-12-08 01:58:34 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $joplin_dir
|
|
|
|
|
|
|
|
node main.js ${@}
|