#!/bin/bash # A script to run Presentations. ext="${@##*.}" shopt -s nocasematch case "$ext" in "prs" ) /usr/share/office2021/presentations -S\""$@"\";; "pps" ) /usr/share/office2021/presentations -S\""$@"\";; "ppsx" ) /usr/share/office2021/presentations -S\""$@"\";; * ) /usr/share/office2021/presentations "$@";; esac