2024-04-26 15:01:27 -07:00

9 lines
144 B
Bash
Executable File

#!/bin/bash
# If no app passed open Writer
if ! [[ "${1}" =~ ^(et|wpspdf|wpp|wps)$ ]]; then
/usr/bin/wps "$@"
else
/usr/bin/${1} ${@:2}
fi