2018-04-18 16:26:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-19 14:02:54 +00:00
|
|
|
readonly joplin_dir="/usr/share/joplin/"
|
2018-04-18 16:26:44 +00:00
|
|
|
|
|
|
|
if [[ ! -d $joplin_dir ]]; then
|
2018-10-29 01:01:00 +00:00
|
|
|
echo "Cannot find /usr/share/joplin/"
|
2018-04-18 16:26:44 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $joplin_dir
|
|
|
|
|
2018-04-19 14:02:54 +00:00
|
|
|
./joplin "$@"
|
|
|
|
|