mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
9fa8fb9e6f
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
10 lines
318 B
Bash
10 lines
318 B
Bash
#!/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
|