summaryrefslogtreecommitdiffstats
path: root/office/smoffice2024/presentations24
diff options
context:
space:
mode:
Diffstat (limited to 'office/smoffice2024/presentations24')
-rw-r--r--office/smoffice2024/presentations2410
1 files changed, 10 insertions, 0 deletions
diff --git a/office/smoffice2024/presentations24 b/office/smoffice2024/presentations24
new file mode 100644
index 0000000000..68179c641e
--- /dev/null
+++ b/office/smoffice2024/presentations24
@@ -0,0 +1,10 @@
+#!/bin/sh
+# A script to run Presentations.
+ext="${@##*.}"
+shopt -s nocasematch
+case "$ext" in
+ "prs" ) /opt/smoffice2024/presentations -S\""$@"\";;
+ "pps" ) /opt/smoffice2024/presentations -S\""$@"\";;
+ "ppsx" ) /opt/smoffice2024/presentations -S\""$@"\";;
+ * ) /opt/smoffice2024/presentations "$@";;
+esac