summaryrefslogtreecommitdiffstats
path: root/office/smoffice2024/presentations24
blob: 68179c641e7fb57672533190275e00698ac83c34 (plain)
#!/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