mirror of
https://github.com/linuxserver/proot-apps.git
synced 2026-01-15 01:31:49 +08:00
9 lines
144 B
Bash
Executable File
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
|