summaryrefslogtreecommitdiffstats
path: root/office/smoffice2021/presentations21
blob: b2b3ad7254b3ebd8473ccce70e5e69cc07ac1039 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# A script to run Presentations.
ext="${@##*.}"
shopt -s nocasematch
case "$ext" in
    "prs" ) /opt/smoffice2021/presentations -S\""$@"\";;
    "pps" ) /opt/smoffice2021/presentations -S\""$@"\";;
    "ppsx" ) /opt/smoffice2021/presentations -S\""$@"\";;
    * ) /opt/smoffice2021/presentations "$@";;
esac