mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
0fcd4d931e
Signed-off-by: Willy Sudiarto Raharjo <willysr@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/smoffice2024/presentations -S\""$@"\";;
|
|
"pps" ) /opt/smoffice2024/presentations -S\""$@"\";;
|
|
"ppsx" ) /opt/smoffice2024/presentations -S\""$@"\";;
|
|
* ) /opt/smoffice2024/presentations "$@";;
|
|
esac
|