blob: ad19bb125315b68eead080078f7b9c84c7fc038e (
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/smoffice2018/presentations -S\""$@"\";;
"pps" ) /opt/smoffice2018/presentations -S\""$@"\";;
"ppsx" ) /opt/smoffice2018/presentations -S\""$@"\";;
* ) /opt/smoffice2018/presentations "$@";;
esac
|