8 lines
176 B
Bash
Executable File
8 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check whether the libreoffice-voikko extension is installed.
|
|
# exit with 0 if yes, exit with 1 if no:
|
|
|
|
unopkg list --bundled | grep 'Identifier.*voikko'
|
|
exit $?
|