diff options
Diffstat (limited to 'office/smoffice2018/presentations18')
-rw-r--r-- | office/smoffice2018/presentations18 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/office/smoffice2018/presentations18 b/office/smoffice2018/presentations18 new file mode 100644 index 0000000000000..ad19bb125315b --- /dev/null +++ b/office/smoffice2018/presentations18 @@ -0,0 +1,10 @@ +#!/bin/sh +# A script to run Presentations. +ext="${@##*.}" +shopt -s nocasematch +case "$ext" in + "prs" ) /opt/smoffice2018/presentations -S\""$@"\";; + "pps" ) /opt/smoffice2018/presentations -S\""$@"\";; + "ppsx" ) /opt/smoffice2018/presentations -S\""$@"\";; + * ) /opt/smoffice2018/presentations "$@";; +esac |