slackbuilds_ponce/office/smoffice2024/presentations24
Antonio Leal 0fcd4d931e
office/smoffice2024: Added (office suite).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-11-09 19:22:21 +07:00

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