blob: b2b3ad7254b3ebd8473ccce70e5e69cc07ac1039 (
plain) (
tree)
|
|
#!/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
|